commit 4cd33c30b0d5000dc84280c8ecdc3f49f7b251a7
parent 9aa15f708bbadb3b6f280d4632eeb24441c62c44
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 12 Feb 2017 09:38:44 +0100
fix #4887
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/include/autoinit_funcs.h b/src/include/autoinit_funcs.h
@@ -67,7 +67,7 @@
*/
#define AUTOINIT_FUNCS_VERSION 0x01000001
-#if defined(__GNUC__)
+#if defined(__GNUC__) || defined(__SUNPRO_C)
#/* if possible - check for supported attribute */
#ifdef __has_attribute
#if !__has_attribute(constructor) || !__has_attribute(destructor)
@@ -76,7 +76,7 @@
#endif /* __has_attribute */
#endif /* __GNUC__ */
-#if defined(__GNUC__) && !defined(_GNUC_ATTR_CONSTR_NOT_SUPPORTED)
+#if (defined(__GNUC__) || defined(__SUNPRO_C)) && !defined(_GNUC_ATTR_CONSTR_NOT_SUPPORTED)
#define GNUC_SET_INIT_AND_DEINIT(FI,FD) \
void __attribute__ ((constructor)) _GNUC_init_helper_##FI(void) \