diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | include/makeinclude/platform_macosx_panther.GNU | 2 |
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 6baa516659d..3ee07617ec7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Sat Feb 21 14:24:20 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu> + + * include/makeinclude/platform_macosx_panther.GNU: + + Added -mpcpu=G3 and -mtune=G4 to OCFLAGS. Mac OS X 10.3 requires + a PowerPC G3 chip and hence this isn't adding any restrictions + to ACE/TAO that the target platform doesn't already have for + itself. Thanks to Thomas Costa <oohrah@mac.com> for the + patches. + Sat Feb 21 19:56:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl> * bin/msvc_static_order.lst: @@ -1834,6 +1834,7 @@ Norm Whitehead <Norm_Whitehead@raytheon.com> Jiang Wei <sdjiangwei@sina.com> Kevin Bryan <bryank@cs.uri.edu> Zvika Ashani <zvika@aspectusvi.com> +Thomas Costa <oohrah@mac.com> Dom Monteiro <d.monteiro@netia.net> Jean-Marc Prud'homme <JPrudhomme@interstarinc.com> Yury Osadchy <Yuryo@maxbill.com> diff --git a/include/makeinclude/platform_macosx_panther.GNU b/include/makeinclude/platform_macosx_panther.GNU index 0ca97e079fe..15cd216a8d9 100644 --- a/include/makeinclude/platform_macosx_panther.GNU +++ b/include/makeinclude/platform_macosx_panther.GNU @@ -25,7 +25,7 @@ DLD = libtool LD = $(CXX) LIBS += -lcc_dynamic -lstdc++ -lSystem -OCFLAGS += -O3 +OCFLAGS += -O3 -mcpu=G3 -mtune=G4 RANLIB = ranlib SOEXT = dylib SOFLAGS += -dynamic |