mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-04 17:58:22 +00:00
Symbol visibility is unsupported on cygwin too.
Patch by Jay Foad! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58520 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d24931632b
commit
476527a19d
@ -17,7 +17,7 @@
|
||||
|
||||
// The VISIBILITY_HIDDEN macro, used for marking classes with the GCC-specific
|
||||
// visibility("hidden") attribute.
|
||||
#if (__GNUC__ >= 4) && !defined(__MINGW32__)
|
||||
#if (__GNUC__ >= 4) && !defined(__MINGW32__) && !defined(__CYGWIN__)
|
||||
#define VISIBILITY_HIDDEN __attribute__ ((visibility("hidden")))
|
||||
#else
|
||||
#define VISIBILITY_HIDDEN
|
||||
|
Loading…
Reference in New Issue
Block a user