diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-07-02 23:08:12 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-07-02 23:08:12 +0200 |
commit | 9f74ec98d34465770faec5a32685aaaee913f0bf (patch) | |
tree | 659be2235c4ee3673ca184d11a70a84a4c59ee6e | |
parent | c8f2050ab6d192abee199fd0a37b1fdf2ab9c281 (diff) | |
download | patches-9f74ec98d34465770faec5a32685aaaee913f0bf.tar patches-9f74ec98d34465770faec5a32685aaaee913f0bf.tar.gz |
gnu: spirv-tools: Remove GCC7 input.
* gnu/packages/vulkan.scm (spirv-tools)[native-inputs]: Remove GCC-7.
[arguments]: Remove <#:phases>.
-rw-r--r-- | gnu/packages/vulkan.scm | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm index c16535f704..160d2615ff 100644 --- a/gnu/packages/vulkan.scm +++ b/gnu/packages/vulkan.scm @@ -32,7 +32,6 @@ #:use-module (gnu packages check) #:use-module (gnu packages cmake) #:use-module (gnu packages freedesktop) - #:use-module (gnu packages gcc) #:use-module (gnu packages gettext) #:use-module (gnu packages gl) #:use-module (gnu packages pkg-config) @@ -96,18 +95,10 @@ and for the GLSL.std.450 extended instruction set. (build-system cmake-build-system) (arguments `(#:tests? #f ; FIXME: Tests fail. - #:phases - (modify-phases %standard-phases - (add-before 'configure 'fixgcc7 - (lambda _ - (unsetenv "C_INCLUDE_PATH") - (unsetenv "CPLUS_INCLUDE_PATH") - #t))) #:configure-flags (list (string-append "-DSPIRV-Headers_SOURCE_DIR=" (assoc-ref %build-inputs "spirv-headers"))))) (inputs `(("spirv-headers" ,spirv-headers))) - (native-inputs `(("gcc" ,gcc-7) - ("pkg-config" ,pkg-config) + (native-inputs `(("pkg-config" ,pkg-config) ("python" ,python))) (home-page "https://github.com/KhronosGroup/SPIRV-Tools") (synopsis "API and commands for processing SPIR-V modules") |