diff options
author | jxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-30 04:47:26 +0000 |
---|---|---|
committer | jxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-30 04:47:26 +0000 |
commit | 8ba74bed593991a4031fa5e85bb233b6d4e84c96 (patch) | |
tree | bb5488679ccd9ce8dcb979f021ce815f388452d8 /include | |
parent | a6221cb0352fc6ba5d7ad5affbba286bbf1776bb (diff) | |
download | ATCD-8ba74bed593991a4031fa5e85bb233b6d4e84c96.tar.gz |
Broke CPPFLAGS apart and created CCFLAGS. This removed warnings
produced by the compiler when doing a make depend.
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_irix6.2_sgic++.GNU | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/makeinclude/platform_irix6.2_sgic++.GNU b/include/makeinclude/platform_irix6.2_sgic++.GNU index 3bd38b1a31d..1050818dd38 100644 --- a/include/makeinclude/platform_irix6.2_sgic++.GNU +++ b/include/makeinclude/platform_irix6.2_sgic++.GNU @@ -10,11 +10,12 @@ DLD = $(CXX) LD = $(CXX) # Basic flags -CPPFLAGS += -O +pp -D_SGI_MP_SOURCE +CCFLAGS += -O +pp +CPPFLAGS += -D_SGI_MP_SOURCE # Instantiate everything... #CPPFLAGS += -ptall -woff 3203,3209,3161,3262,3665 # Instantiate used templates, plus prelinking instantiation -CPPFLAGS += -ptused -prelink -woff 3203,3209,3161,3262,3665 +CCFLAGS += -ptused -prelink -woff 3203,3209,3161,3262,3665 # 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 @@ -24,6 +25,6 @@ PIC = -KPIC AR = ar ARFLAGS = r RANLIB = echo -SOFLAGS = -shared $(CPPFLAGS) -all +SOFLAGS = -shared $(CCFLAGS) $(CPPFLAGS) -all SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.o $<; \ $(SOLINK.cc) -o $@ $(LDFLAGS) $(VSHDIR)$*.o |