diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-01 16:10:22 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-01 16:10:22 +0000 |
commit | eadd9af204295d4fb3b3d6e8fe07c00c3a3d700c (patch) | |
tree | ad5462e3c6fed893c0d179408a2b0fc37d598331 /include | |
parent | 3ef83409eb4c357c1ec8a0d38e980630f92532ab (diff) | |
download | ATCD-eadd9af204295d4fb3b3d6e8fe07c00c3a3d700c.tar.gz |
ChangeLogTag:Thu Jul 01 10:53:33 1999 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_vxworks5.x_g++.GNU | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/include/makeinclude/platform_vxworks5.x_g++.GNU b/include/makeinclude/platform_vxworks5.x_g++.GNU index 576db8f0a58..76ca934af3c 100644 --- a/include/makeinclude/platform_vxworks5.x_g++.GNU +++ b/include/makeinclude/platform_vxworks5.x_g++.GNU @@ -39,19 +39,13 @@ ifeq (,$(findstring $(HOST_DIR)/bin,$PATH)) PATH := $(PATH):$(HOST_DIR)/bin endif # PATH -PERL_PATH = perl - -ifeq (win32,$(findstring win32,$(WIND_HOST_TYPE))) - #### GNU make on WIN32 needs quoted double quotes. - ACE_QUOTE ='"' -else # ! win32 host - ACE_QUOTE =" -endif # ! win32 host +ifeq (,$(PERL_PATH)) + PERL_PATH = perl +endif # ! PERL_PATH #### BEGIN target CPU-specific settings - #### This is kind of messy so that it can support multiple targets. #### You'll need to set CPU to a supported CPU using one of these #### methods (unless your CPU is a PowerPC 604): @@ -104,7 +98,6 @@ endif # I80486 endif # PPC860 endif # PPC604 - #### END target CPU-specific settings @@ -149,9 +142,9 @@ endif # rtti DCFLAGS += -g DLD = $(LD) INCLDIRS += -I$(WIND_BASE)/target/h -LD = $(PERL_PATH) $(ACE_ROOT)/bin/ace_ld -c \ - $(ACE_QUOTE)$(COMPILE.c) -traditional$(ACE_QUOTE) \ - -m "munch" -n "nm$(TOOLENV)" ld$(TOOLENV) +LD = $(PERL_PATH) $(ACE_ROOT)/bin/ace_ld \ + -C $(COMPILE.c) -traditional -- \ + -m munch -n nm$(TOOLENV) ld$(TOOLENV) LDFLAGS += -X -r #### WindRiver only recommends -O, not -O2, with some CPUs, including #### the i386 family. And -O2 causes some compilation failures. |