Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Backports:SLE-15-SP1:Update
spirv-tools
gcc48.diff
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File gcc48.diff of Package spirv-tools
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~g135/tools/io.h =================================================================== --- spirv-tools-2016.7~g135.orig/tools/io.h +++ spirv-tools-2016.7~g135/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; }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor