Accepting request 454708 from X11:Wayland
- Update to new snapshot 2016.7~g24 OBS-URL: https://build.opensuse.org/request/show/454708 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/spirv-tools?expand=0&rev=2
This commit is contained in:
commit
f1840b5d4a
4
_service
4
_service
@ -3,8 +3,8 @@
|
|||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://github.com/KhronosGroup/SPIRV-Tools</param>
|
<param name="url">https://github.com/KhronosGroup/SPIRV-Tools</param>
|
||||||
<param name="filename">spirv-tools</param>
|
<param name="filename">spirv-tools</param>
|
||||||
<param name="parent-tag">spirv-1.1-rev1</param>
|
<param name="parent-tag">68c5f0436f1d4f1f137e608780190865d0b193ca</param>
|
||||||
<param name="versionformat">1.1.g@TAG_OFFSET@</param>
|
<param name="versionformat">2016.7~g@TAG_OFFSET@</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="disabled">
|
||||||
<param name="file">*.tar</param>
|
<param name="file">*.tar</param>
|
||||||
|
30
gcc48.diff
Normal file
30
gcc48.diff
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
From: Jan Engelhardt <jengelh@inai.de>
|
||||||
|
Date: 2017-02-02 19:42:44.679588946 +0100
|
||||||
|
|
||||||
|
build: workaround gcc 4.8 bug
|
||||||
|
|
||||||
|
tools/io.h:41:38:
|
||||||
|
error: ignoring return value of 'long int ftell(FILE*)',
|
||||||
|
declared with attribute warn_unused_result [-Werror=unused-result,-Werror]
|
||||||
|
if (sizeof(T) != 1 && (ftell(fp) % sizeof(T))) {
|
||||||
|
|
||||||
|
Workaround gcc 4.8's wrongful idea that ftell's return value
|
||||||
|
were ignored.
|
||||||
|
---
|
||||||
|
tools/io.h | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
Index: spirv-tools-2016.7~g24/tools/io.h
|
||||||
|
===================================================================
|
||||||
|
--- spirv-tools-2016.7~g24.orig/tools/io.h
|
||||||
|
+++ spirv-tools-2016.7~g24/tools/io.h
|
||||||
|
@@ -38,7 +38,8 @@ bool ReadFile(const char* filename, cons
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
- if (sizeof(T) != 1 && (ftell(fp) % sizeof(T))) {
|
||||||
|
+ long ftx = ftell(fp);
|
||||||
|
+ if (sizeof(T) != 1 && ftx % sizeof(T) != 0) {
|
||||||
|
fprintf(stderr, "error: corrupted word found in file '%s'\n", filename);
|
||||||
|
return false;
|
||||||
|
}
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ea51c69e9d730d4a6df8e472270bc14d0a717250524550df9cb0484f1d7c1de3
|
|
||||||
size 159116
|
|
3
spirv-tools-2016.7~g24.tar.xz
Normal file
3
spirv-tools-2016.7~g24.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1dba9a634b911fd2d1773f7cd5e02311bcb20725f7302a953e108771e009cf12
|
||||||
|
size 288652
|
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 2 10:35:57 UTC 2017 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Update to new snapshot 2016.7~g24
|
||||||
|
* Add classes for representing SPIR-V language constructs in memory.
|
||||||
|
* Add an option to spvBinaryToText() to ignore header output.
|
||||||
|
* Add IrBuilder for constructing SPIR-V in-memory representation.
|
||||||
|
* Add Pass, PassManager, and StripDebugInfoPass.
|
||||||
|
* Add the spirv-opt command line tool.
|
||||||
|
* Fixes segfault for loops without back-edges
|
||||||
|
* Allow missing memory model instructions in modules.
|
||||||
|
* Add spirv-lesspipe.sh
|
||||||
|
* Add spirv-dis/spirv-as support for emacs when loading .spv binaries
|
||||||
|
- Add gcc48.diff
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 09:46:37 UTC 2016 - jengelh@inai.de
|
Mon Jun 13 09:46:37 UTC 2016 - jengelh@inai.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package spirv-tools
|
# spec file for package spirv-tools
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,23 +16,26 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define version_unconverted 1.1.g41
|
%define version_unconverted 2016.7~g24
|
||||||
%define lname libSPIRV-Tools-1_1
|
%define lname libSPIRV-Tools-suse2
|
||||||
|
|
||||||
Name: spirv-tools
|
Name: spirv-tools
|
||||||
Version: 1.1.g41
|
Version: 2016.7~g24
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: API and commands for processing SPIR-V modules
|
Summary: API and commands for processing SPIR-V modules
|
||||||
License: MIT
|
License: Apache-2.0
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Url: https://github.com/KhronosGroup/SPIRV-Tools
|
Url: https://github.com/KhronosGroup/SPIRV-Tools
|
||||||
|
|
||||||
Source: %name-%version.tar.xz
|
Source: %name-%version.tar.xz
|
||||||
Patch1: ver.diff
|
Patch1: ver.diff
|
||||||
|
Patch2: gcc48.diff
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: bison
|
BuildRequires: bison
|
||||||
BuildRequires: cmake >= 2.8.12
|
BuildRequires: cmake >= 2.8.12
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: python
|
||||||
|
BuildRequires: python-xml
|
||||||
BuildRequires: python3
|
BuildRequires: python3
|
||||||
BuildRequires: spirv-headers
|
BuildRequires: spirv-headers
|
||||||
|
|
||||||
@ -63,7 +66,7 @@ integration into other code bases directly.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch -P 1 -p1
|
%patch -P 1 -P 2 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake -D"SPIRV-Headers_SOURCE_DIR=%_prefix"
|
%cmake -D"SPIRV-Headers_SOURCE_DIR=%_prefix"
|
||||||
@ -82,13 +85,19 @@ fi
|
|||||||
%postun -n %lname -p /sbin/ldconfig
|
%postun -n %lname -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
%_bindir/spirv-*
|
%_bindir/spirv-*
|
||||||
%doc LICENSE
|
%doc LICENSE
|
||||||
|
|
||||||
%files -n %lname
|
%files -n %lname
|
||||||
%_libdir/libSPIRV-Tools-1.1.so
|
%defattr(-,root,root)
|
||||||
|
%_libdir/libSPIRV-Tools.so.*
|
||||||
|
%_libdir/libSPIRV-Tools-opt.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%_libdir/libSPIRV-Tools.so
|
||||||
|
%_libdir/libSPIRV-Tools-opt.so
|
||||||
%_includedir/spirv-tools/
|
%_includedir/spirv-tools/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
36
ver.diff
36
ver.diff
@ -4,19 +4,31 @@ Date: 2016-06-13 11:46:16.846841814 +0200
|
|||||||
Unversioned libraries suck!
|
Unversioned libraries suck!
|
||||||
|
|
||||||
---
|
---
|
||||||
CMakeLists.txt | 2 +-
|
source/CMakeLists.txt | 1 +
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
source/opt/CMakeLists.txt | 1 +
|
||||||
|
2 files changed, 2 insertions(+)
|
||||||
|
|
||||||
Index: SPIRV-Tools/CMakeLists.txt
|
Index: spirv-tools-2016.7~g24/source/CMakeLists.txt
|
||||||
===================================================================
|
===================================================================
|
||||||
--- SPIRV-Tools.orig/CMakeLists.txt
|
--- spirv-tools-2016.7~g24.orig/source/CMakeLists.txt
|
||||||
+++ SPIRV-Tools/CMakeLists.txt
|
+++ spirv-tools-2016.7~g24/source/CMakeLists.txt
|
||||||
@@ -27,7 +27,7 @@
|
@@ -219,6 +219,7 @@ set_source_files_properties(
|
||||||
cmake_minimum_required(VERSION 2.8.12)
|
PROPERTIES OBJECT_DEPENDS "${SPIRV_TOOLS_BUILD_VERSION_INC}")
|
||||||
project(spirv-tools)
|
|
||||||
enable_testing()
|
|
||||||
-set(SPIRV_TOOLS "SPIRV-Tools")
|
|
||||||
+set(SPIRV_TOOLS "SPIRV-Tools-1.1")
|
|
||||||
|
|
||||||
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
add_library(${SPIRV_TOOLS} ${SPIRV_SOURCES})
|
||||||
|
+set_target_properties(${SPIRV_TOOLS} PROPERTIES SOVERSION suse2)
|
||||||
|
spvtools_default_compile_options(${SPIRV_TOOLS})
|
||||||
|
target_include_directories(${SPIRV_TOOLS}
|
||||||
|
PUBLIC ${spirv-tools_SOURCE_DIR}/include
|
||||||
|
Index: spirv-tools-2016.7~g24/source/opt/CMakeLists.txt
|
||||||
|
===================================================================
|
||||||
|
--- spirv-tools-2016.7~g24.orig/source/opt/CMakeLists.txt
|
||||||
|
+++ spirv-tools-2016.7~g24/source/opt/CMakeLists.txt
|
||||||
|
@@ -53,6 +53,7 @@ add_library(SPIRV-Tools-opt
|
||||||
|
unify_const_pass.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
+set_target_properties(SPIRV-Tools-opt PROPERTIES SOVERSION suse2)
|
||||||
|
spvtools_default_compile_options(SPIRV-Tools-opt)
|
||||||
|
target_include_directories(SPIRV-Tools-opt
|
||||||
|
PUBLIC ${spirv-tools_SOURCE_DIR}/include
|
||||||
|
Loading…
Reference in New Issue
Block a user