import vulkan-validation-layers-1.2.182.0-2.el8_4
This commit is contained in:
parent
1dca05d7b5
commit
8a261fb398
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/Vulkan-ValidationLayers-sdk-1.2.162.0.tar.gz
|
SOURCES/Vulkan-ValidationLayers-sdk-1.2.182.0.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
572b4ca565a7f6cc8a46eb217d3edced1e16dfcc SOURCES/Vulkan-ValidationLayers-sdk-1.2.162.0.tar.gz
|
921c42f17905f2dacb99c931eb80c973f6fa08f4 SOURCES/Vulkan-ValidationLayers-sdk-1.2.182.0.tar.gz
|
||||||
|
24
SOURCES/add-missing-export.patch
Normal file
24
SOURCES/add-missing-export.patch
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
diff -up Vulkan-ValidationLayers-sdk-1.2.182.0/layers/vk_layer_config.cpp.dma Vulkan-ValidationLayers-sdk-1.2.182.0/layers/vk_layer_config.cpp
|
||||||
|
--- Vulkan-ValidationLayers-sdk-1.2.182.0/layers/vk_layer_config.cpp.dma 2021-08-07 08:13:46.344320103 +1000
|
||||||
|
+++ Vulkan-ValidationLayers-sdk-1.2.182.0/layers/vk_layer_config.cpp 2021-08-07 08:14:22.130893289 +1000
|
||||||
|
@@ -68,7 +68,7 @@ class ConfigFile {
|
||||||
|
|
||||||
|
static ConfigFile layer_config;
|
||||||
|
|
||||||
|
-string GetEnvironment(const char *variable) {
|
||||||
|
+VK_LAYER_EXPORT string GetEnvironment(const char *variable) {
|
||||||
|
#if !defined(__ANDROID__) && !defined(_WIN32)
|
||||||
|
const char *output = getenv(variable);
|
||||||
|
return output == NULL ? "" : output;
|
||||||
|
diff -up Vulkan-ValidationLayers-sdk-1.2.182.0/layers/vk_layer_config.h.dma Vulkan-ValidationLayers-sdk-1.2.182.0/layers/vk_layer_config.h
|
||||||
|
--- Vulkan-ValidationLayers-sdk-1.2.182.0/layers/vk_layer_config.h.dma 2021-08-07 08:14:04.352608540 +1000
|
||||||
|
+++ Vulkan-ValidationLayers-sdk-1.2.182.0/layers/vk_layer_config.h 2021-08-07 08:14:15.237782885 +1000
|
||||||
|
@@ -33,7 +33,7 @@
|
||||||
|
#define SECONDARY_VK_REGISTRY_HIVE_STR "HKEY_CURRENT_USER"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
-std::string GetEnvironment(const char *variable);
|
||||||
|
+VK_LAYER_EXPORT std::string GetEnvironment(const char *variable);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
@ -1,12 +1,13 @@
|
|||||||
Name: vulkan-validation-layers
|
Name: vulkan-validation-layers
|
||||||
Version: 1.2.162.0
|
Version: 1.2.182.0
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Vulkan validation layers
|
Summary: Vulkan validation layers
|
||||||
|
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: https://github.com/KhronosGroup/Vulkan-ValidationLayers
|
URL: https://github.com/KhronosGroup/Vulkan-ValidationLayers
|
||||||
Source0: %url/archive/sdk-%{version}.tar.gz#/Vulkan-ValidationLayers-sdk-%{version}.tar.gz
|
Source0: %url/archive/sdk-%{version}.tar.gz#/Vulkan-ValidationLayers-sdk-%{version}.tar.gz
|
||||||
Patch0: fix_shared.patch
|
Patch0: fix_shared.patch
|
||||||
|
Patch1: add-missing-export.patch
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
@ -45,12 +46,14 @@ developing applications that use %{name}.
|
|||||||
%build
|
%build
|
||||||
# Decrease debuginfo verbosity to reduce memory consumption even more
|
# Decrease debuginfo verbosity to reduce memory consumption even more
|
||||||
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
|
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
|
||||||
|
%global optflags %(echo %{optflags} | sed 's/-O2 /-O1 /')
|
||||||
|
|
||||||
|
|
||||||
%cmake -GNinja \
|
%cmake -GNinja \
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
-DGLSLANG_INSTALL_DIR=%{_prefix} \
|
-DGLSLANG_INSTALL_DIR=%{_prefix} \
|
||||||
-DBUILD_LAYER_SUPPORT_FILES:BOOL=ON \
|
-DBUILD_LAYER_SUPPORT_FILES:BOOL=ON \
|
||||||
|
-DUSE_ROBIN_HOOD_HASHING:BOOL=OFF \
|
||||||
-DSPIRV_HEADERS_INSTALL_DIR=%{_includedir}/spirv/ \
|
-DSPIRV_HEADERS_INSTALL_DIR=%{_includedir}/spirv/ \
|
||||||
-DCMAKE_INSTALL_INCLUDEDIR=%{_includedir}/vulkan/ .
|
-DCMAKE_INSTALL_INCLUDEDIR=%{_includedir}/vulkan/ .
|
||||||
%ninja_build
|
%ninja_build
|
||||||
@ -73,6 +76,12 @@ developing applications that use %{name}.
|
|||||||
%{_includedir}/vulkan/
|
%{_includedir}/vulkan/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Aug 07 2021 Dave Airlie <airlied@redhat.com> - 1.2.182.0-2
|
||||||
|
- add missing GetEnvironment export
|
||||||
|
|
||||||
|
* Thu Jul 08 2021 Dave Airlie <airlied@redhat.com> - 1.2.182.0-1
|
||||||
|
- Update to 1.2.182.0
|
||||||
|
|
||||||
* Mon Feb 01 2021 Dave Airlie <airlied@redhat.com> - 1.2.162.0-1
|
* Mon Feb 01 2021 Dave Airlie <airlied@redhat.com> - 1.2.162.0-1
|
||||||
- Update to 1.2.162.0
|
- Update to 1.2.162.0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user