Stopgap fix for gcc platforms.
Our in-tree gcc doesn't have a no-tree-vectorize optimization knob, so we get a warning that it's unused. This causes the build to fail on all our gcc platforms. Add a quick version check as a stop-gap measure to get CI building again.
This commit is contained in:
parent
d14edd797e
commit
463658d2b4
@ -128,7 +128,7 @@
|
||||
}
|
||||
|
||||
/* vectorization */
|
||||
#if !defined(__clang__) && defined(__GNUC__)
|
||||
#if !defined(__clang__) && defined(__GNUC__) && __GNUC__ > 5
|
||||
# define DONT_VECTORIZE __attribute__((optimize("no-tree-vectorize")))
|
||||
#else
|
||||
# define DONT_VECTORIZE
|
||||
|
Loading…
Reference in New Issue
Block a user