mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 09:21:36 +00:00
a-c.c: don't USE_VECTOR_EXT with Clang, since it doesn't compile here.
git-svn-id: https://svn.eduke32.com/eduke32@4733 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
0cc9f05b8b
commit
44373a7698
1 changed files with 5 additions and 1 deletions
|
@ -193,7 +193,11 @@ extern int32_t vince[4];
|
||||||
extern intptr_t bufplce[4];
|
extern intptr_t bufplce[4];
|
||||||
|
|
||||||
#if (EDUKE32_GCC_PREREQ(4,7) || __has_extension(attribute_ext_vector_type)) && defined BITNESS64
|
#if (EDUKE32_GCC_PREREQ(4,7) || __has_extension(attribute_ext_vector_type)) && defined BITNESS64
|
||||||
|
// XXX: The "Ubuntu clang version 3.5-1ubuntu1 (trunk) (based on LLVM 3.5)"
|
||||||
|
// does not compile us with USE_VECTOR_EXT. Maybe a newer one does?
|
||||||
|
# if !defined __clang__
|
||||||
# define USE_VECTOR_EXT
|
# define USE_VECTOR_EXT
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef USE_VECTOR_EXT
|
#ifdef USE_VECTOR_EXT
|
||||||
|
|
Loading…
Reference in a new issue