aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@21a6bef8-4479-4f54-8f8d-0db94a2919ef>2001-01-17 11:45:37 +0000
committerallen <allen@21a6bef8-4479-4f54-8f8d-0db94a2919ef>2001-01-17 11:45:37 +0000
commit75d812a6d4acde05c969fd5ded85be5aae13e89a (patch)
tree45e3e56d9e80c9576b7de302a0051751ee87ca3d
parentdaa5dae006e25c1780950e299c7e0b8f3cf85a73 (diff)
Added -tall to CXXFLAGS if OSF's native compiler is used.
This fixes template instantiation. git-svn-id: http://svn.cactuscode.org/arrangements/CactusExternal/FlexIO/trunk@12 21a6bef8-4479-4f54-8f8d-0db94a2919ef
-rw-r--r--src/make.code.defn7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/make.code.defn b/src/make.code.defn
index a4256bb..852a470 100644
--- a/src/make.code.defn
+++ b/src/make.code.defn
@@ -53,7 +53,12 @@ endif
# Alpha
ifeq ($(UNAME), OSF1)
-CXXFLAGS += -DANSI
+CXXFLAGS += -DANSI
+
+# OSF's native compiler needs -tall for proper template instantiation
+ifeq ($(CXX), cxx)
+CXXFLAGS += -tall
+endif
endif