diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-08 02:57:26 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-08 02:57:26 +0000 |
commit | 06a14d59011fb839324eebcb4d07c10a5b3cb8d8 (patch) | |
tree | 78d97d00d8f58dca99db15070677be76287286b6 /include/makeinclude | |
parent | e314c116f00aaed3f147094928219b973c63f152 (diff) | |
download | ATCD-06a14d59011fb839324eebcb4d07c10a5b3cb8d8.tar.gz |
enabled CPPFLAGS to instantiate all templates so that gatewayd will build
Diffstat (limited to 'include/makeinclude')
-rw-r--r-- | include/makeinclude/platform_irix6.2_sgic++.GNU | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/makeinclude/platform_irix6.2_sgic++.GNU b/include/makeinclude/platform_irix6.2_sgic++.GNU index 1050818dd38..4f8c2a636fd 100644 --- a/include/makeinclude/platform_irix6.2_sgic++.GNU +++ b/include/makeinclude/platform_irix6.2_sgic++.GNU @@ -11,11 +11,12 @@ LD = $(CXX) # Basic flags CCFLAGS += -O +pp -CPPFLAGS += -D_SGI_MP_SOURCE -# Instantiate everything... -#CPPFLAGS += -ptall -woff 3203,3209,3161,3262,3665 +CPPFLAGS += -D_SGI_MP_SOURCE -woff 3203,3209,3161,3262,3665 +# Instantiate everything; without this, apps/Gateway/Gateway/gatewayd might +# not build due to missing template instantiations. +CPPFLAGS += -ptall # Instantiate used templates, plus prelinking instantiation -CCFLAGS += -ptused -prelink -woff 3203,3209,3161,3262,3665 +# CCFLAGS += -ptused -prelink # Unknown version of SGI CC, -n32 mode # NOTE: -32/-n32/-64 mode is usually better set by the environment variable 'SGI_ABI' #CPPFLAGS += -n32 -woff 1174,1209,1375,1506,1110,1552,1021,1171 |