aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Panda/make.code.defn9
-rw-r--r--src/make.code.defn1
2 files changed, 10 insertions, 0 deletions
diff --git a/src/Panda/make.code.defn b/src/Panda/make.code.defn
index c4af0e1..7b6d396 100644
--- a/src/Panda/make.code.defn
+++ b/src/Panda/make.code.defn
@@ -3,3 +3,12 @@ SRCS = App_Info.C Array.C ArrayDistribution.C ArrayLayout.C Attribute.C \
VirtFS.C c_interface.C
CXXFLAGS += -DANSI -DFILEPREFIX=\"\"
+
+UNAME := $(shell uname)
+
+ifeq ($(UNAME), SUPER-UX)
+
+CFLAGS += -DSX5
+CXXFLAGS += -T all -DSX5
+endif
+
diff --git a/src/make.code.defn b/src/make.code.defn
index a4db902..a1460c9 100644
--- a/src/make.code.defn
+++ b/src/make.code.defn
@@ -15,5 +15,6 @@ UNAME := $(shell uname)
ifeq ($(UNAME), SUPER-UX)
CFLAGS += -DSX5
+CXXFLAGS += -T all -DSX5
endif