diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-23 03:54:14 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-23 03:54:14 +0000 |
commit | 04c953f5e15b6245ee6888d17b8530fa0a70404f (patch) | |
tree | 52bf7bc4623271934c1f9abbcf026ec20200ea85 /include | |
parent | 343fe6cd955ba510f150c164dfb8dbe7801e131a (diff) | |
download | ATCD-04c953f5e15b6245ee6888d17b8530fa0a70404f.tar.gz |
set CROSS-COMPILE flag
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_chorus.GNU | 1 | ||||
-rw-r--r-- | include/makeinclude/platform_chorus_ghs.GNU | 7 | ||||
-rw-r--r-- | include/makeinclude/platform_lynxos.GNU | 2 | ||||
-rw-r--r-- | include/makeinclude/platform_vxworks5.x_ghs.GNU | 4 |
4 files changed, 10 insertions, 4 deletions
diff --git a/include/makeinclude/platform_chorus.GNU b/include/makeinclude/platform_chorus.GNU index 4996605e6a2..5fc6a159c5f 100644 --- a/include/makeinclude/platform_chorus.GNU +++ b/include/makeinclude/platform_chorus.GNU @@ -3,6 +3,7 @@ # Chorus 3.1b with GNU g++ 2.7.2 CHORUS = 1 +CROSS-COMPILE = 1 debug = 1 optimize = 1 diff --git a/include/makeinclude/platform_chorus_ghs.GNU b/include/makeinclude/platform_chorus_ghs.GNU index 3295eed447c..b10edd1e747 100644 --- a/include/makeinclude/platform_chorus_ghs.GNU +++ b/include/makeinclude/platform_chorus_ghs.GNU @@ -21,15 +21,18 @@ ifndef MVME_LIB endif # MVME_LIB CHORUS = 1 +CROSS-COMPILE = 1 debug = 1 optimize = 1 shared_libs = static_libs = 1 -CC = $(GHS_DIR)/build -driver ch68 +CC = $(GHS_DIR)/ccch68 + CXX = $(CC) -CFLAGS = -I$(MVME_INCL)/posix \ +CFLAGS = -groot= -alttools=$(GHS_DIR) -68040 -X445 -fprecise -D__cpluplus=1 \ + -I$(MVME_INCL)/posix \ -I$(MVME_INCL)/stdc \ -I$(MVME_INCL)/chorus \ -I$(MVME_INCL)/CC diff --git a/include/makeinclude/platform_lynxos.GNU b/include/makeinclude/platform_lynxos.GNU index f5acf65c452..0276e314061 100644 --- a/include/makeinclude/platform_lynxos.GNU +++ b/include/makeinclude/platform_lynxos.GNU @@ -1,7 +1,7 @@ # $Id$ # LynxOS with g++ -LYNXOS = 1 +CROSS-COMPILE = 1 # NOTE: with LynxOS 2.5.0-FCS version: 012797-G, you'll need to # apply this patch: diff --git a/include/makeinclude/platform_vxworks5.x_ghs.GNU b/include/makeinclude/platform_vxworks5.x_ghs.GNU index fedb15a8ebf..67bb883d539 100644 --- a/include/makeinclude/platform_vxworks5.x_ghs.GNU +++ b/include/makeinclude/platform_vxworks5.x_ghs.GNU @@ -2,6 +2,9 @@ # VxWorks 5.2-5.3.1 with Green Hills 1.8.8 +VXWORKS = 1 +CROSS-COMPILE = 1 + debug = 1 shared_libs = static_libs = 1 @@ -19,4 +22,3 @@ PIC = AR = ax ARFLAGS = rv RANLIB = /bin/true -VXWORKS = 1 |