summaryrefslogtreecommitdiff
path: root/ACE/include/makeinclude
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2015-07-01 18:23:33 -0400
committerSteve Huston <shuston@riverace.com>2015-07-01 18:23:33 -0400
commitbde47e74c5571ce65d3550ad47f18b134e88c94f (patch)
treee0396792aa28d922e77fd30c866dd41aa10efa1b /ACE/include/makeinclude
parentd1888c8fc434c9d8250d525a74a4bd8aa948d5bf (diff)
parent2aa6b42fa27706a8103c1233d4cbe0164eba7f32 (diff)
downloadATCD-bde47e74c5571ce65d3550ad47f18b134e88c94f.tar.gz
Merge pull request #43 from likema/feature/aix5.1
feature/aix5.1
Diffstat (limited to 'ACE/include/makeinclude')
-rw-r--r--ACE/include/makeinclude/platform_aix_g++.GNU9
1 files changed, 4 insertions, 5 deletions
diff --git a/ACE/include/makeinclude/platform_aix_g++.GNU b/ACE/include/makeinclude/platform_aix_g++.GNU
index 5576d81177d..141aa9272c7 100644
--- a/ACE/include/makeinclude/platform_aix_g++.GNU
+++ b/ACE/include/makeinclude/platform_aix_g++.GNU
@@ -1,4 +1,3 @@
-#
# Platform macros for building on AIX with g++. This has been tested on
# AIX 4.3 and 5 with gcc 3. Earlier versions of gcc may compile, but are
# known to have serious problems on AIX.
@@ -30,7 +29,7 @@ SOEXT = so
LDFLAGS += -Wl,-brtl
ifeq (1,$(threads))
- CFLAGS += -pthread
+ FLAGS_C_CC += -pthread
endif
ifeq ($(shared_libs),1)
@@ -48,12 +47,12 @@ AIX_VERS := $(AIX_MAJOR_VERS)0$(AIX_MINOR_VERS)
CC = gcc
CXX = g++
-CFLAGS += -DACE_AIX_VERS=$(AIX_VERS)
+FLAGS_C_CC += -DACE_AIX_VERS=$(AIX_VERS)
ifeq ($(buildbits),32)
- CFLAGS += -maix32
+ FLAGS_C_CC += -maix32
endif
ifeq ($(buildbits),64)
- CFLAGS += -maix64
+ FLAGS_C_CC += -maix64
LDFLAGS += -maix64
ARFLAGS += -X64
endif