aboutsummaryrefslogtreecommitdiff
path: root/src/make.code.defn
diff options
context:
space:
mode:
Diffstat (limited to 'src/make.code.defn')
-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