summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/slang.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/slang.h b/include/slang.h
index 2ba7150ec..24db0a6ff 100644
--- a/include/slang.h
+++ b/include/slang.h
@@ -227,10 +227,9 @@ convention for interface methods.
#if defined(_MSC_VER)
#define SLANG_DLL_EXPORT __declspec(dllexport)
#else
- #if 0 && __GNUC__ >= 4
-// Didn't work on latest gcc on linux.. so disable for now
-// https://gcc.gnu.org/wiki/Visibility
- #define SLANG_DLL_EXPORT __attribute__((dllexport))
+ #if SLANG_WINDOWS_FAMILY
+ #define SLANG_DLL_EXPORT \
+ __attribute__((dllexport)) __attribute__((__visibility__("default")))
#else
#define SLANG_DLL_EXPORT __attribute__((__visibility__("default")))
#endif