summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-10-19 16:58:24 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-10-19 16:58:24 +0000
commit6efe8838f99800218e7cc1d7a53b3cd68dd37731 (patch)
tree1c0195263e416145e953f4a89ed1aea8145b38cd
parent5cccb446db9fce1a37c73265426ee7140ae4da35 (diff)
downloadATCD-6efe8838f99800218e7cc1d7a53b3cd68dd37731.tar.gz
ChangeLogTag:Wed Oct 19 09:56:31 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r--ChangeLog9
-rw-r--r--include/makeinclude/platform_macosx_tiger_gcc4.GNU5
2 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1948a6c7656..6eaadd6b9a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Wed Oct 19 09:56:31 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
+
+ * include/makeinclude/platform_macosx_tiger_gcc4.GNU:
+
+ Disable symbol visibility support by default. Apple's g++ 4
+ compiler doesn't appear to correctly support visibility
+ attributes, at least as well as the vanilla g++. Thanks to
+ Will, Kitty and J.T. for testing and tracking the problem.
+
Wed Oct 19 09:26:34 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
* ace/ACE.h (strdelete):
diff --git a/include/makeinclude/platform_macosx_tiger_gcc4.GNU b/include/makeinclude/platform_macosx_tiger_gcc4.GNU
index 231342ff49c..3687e8afac3 100644
--- a/include/makeinclude/platform_macosx_tiger_gcc4.GNU
+++ b/include/makeinclude/platform_macosx_tiger_gcc4.GNU
@@ -20,6 +20,11 @@ endif
ifeq (,$(versioned_so))
versioned_so = 0
endif
+ifeq (,$(no_hidden_visibility))
+# Apple's g++ 4 compiler doesn't appear to correctly support
+# visibility attributes, at least as well as the vanilla g++.
+ no_hidden_visibility = 1
+endif
with_ld = macosx
pipes ?= 1