summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-04-26 16:41:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-04-26 16:41:44 +0000
commit65e6b542fa8a8cdf6c3046eba2d77afb66ef647e (patch)
treef1a4eec6163c717832a10dc89ac938eb2229a8da
parent2001-04-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-65e6b542fa8a8cdf6c3046eba2d77afb66ef647e.tar.bz2
2001-04-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* compilers/gcc-no_bsp.cfg: Remove -ansi -fasm. * compilers/gcc-default.cfg: Dito. * compilers/gcc-portsw.cfg: Remove -Hansi. * custom/posix.cfg: Remove inclusion of target.cfg. * custom/simhppa.cfg: Remove -ansi -fasm.
-rw-r--r--c/src/make/compilers/gcc-target-default.cfg2
-rw-r--r--make/ChangeLog8
-rw-r--r--make/compilers/gcc-no_bsp.cfg2
-rw-r--r--make/compilers/gcc-portsw.cfg2
-rw-r--r--make/compilers/gcc-target-default.cfg2
-rw-r--r--make/custom/posix.cfg1
-rw-r--r--make/custom/simhppa.cfg4
7 files changed, 13 insertions, 8 deletions
diff --git a/c/src/make/compilers/gcc-target-default.cfg b/c/src/make/compilers/gcc-target-default.cfg
index c0baabb6d4..530df0dced 100644
--- a/c/src/make/compilers/gcc-target-default.cfg
+++ b/c/src/make/compilers/gcc-target-default.cfg
@@ -18,7 +18,7 @@
# cf. make.info ("Implicit rules/variables" for details)
# NOTE: Should these go to CPPFLAGS ?
-CFLAGS_DEFAULT=-g -Wall -ansi -fasm
+CFLAGS_DEFAULT=-g -Wall
# NOTE: CPU_CFLAGS should probably be renamed to CPU_CPPFLAGS
# NOTE: CPU_DEFINES should probably be merged with CPU_CFLAGS
diff --git a/make/ChangeLog b/make/ChangeLog
index 051dcd96d0..a4e454ead8 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -1,3 +1,11 @@
+
+2001-04-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * compilers/gcc-default.cfg: Dito.
+ * compilers/gcc-target-default.cfg: Dito.
+ * compilers/gcc-portsw.cfg: Remove -Hansi.
+ * custom/posix.cfg: Remove inclusion of target.cfg.
+ * custom/simhppa.cfg: Remove -ansi -fasm.
2001-04-11 Eric Valette <valette@crf.canon.fr>
diff --git a/make/compilers/gcc-no_bsp.cfg b/make/compilers/gcc-no_bsp.cfg
index 63f9187020..fb3f74ee1d 100644
--- a/make/compilers/gcc-no_bsp.cfg
+++ b/make/compilers/gcc-no_bsp.cfg
@@ -69,7 +69,7 @@ endef
#
CPU_CFLAGS =
-CFLAGS_DEFAULT = $(CPU_CFLAGS) -Wall -ansi -fasm
+CFLAGS_DEFAULT = $(CPU_CFLAGS) -Wall
# optimize flag: typically -0, could use -O4 or -fast
# -O4 is ok for RTEMS
diff --git a/make/compilers/gcc-portsw.cfg b/make/compilers/gcc-portsw.cfg
index 1394d5eeca..8a21d75033 100644
--- a/make/compilers/gcc-portsw.cfg
+++ b/make/compilers/gcc-portsw.cfg
@@ -49,7 +49,7 @@ CPPFLAGS=$(XCPPFLAGS) $(DEFINES) \
# default flags
-#CFLAGS_DEFAULT = -NB -bwc -nocrt0 -Ml -m -g -Hansi -Hon=Pointers_compatible -Hon=Pointers_compatible_with_ints -Dinline= -D___AM29K__ -Hnocopyr
+#CFLAGS_DEFAULT = -NB -bwc -nocrt0 -Ml -m -g -Hon=Pointers_compatible -Hon=Pointers_compatible_with_ints -Dinline= -D___AM29K__ -Hnocopyr
CFLAGS_DEFAULT = $(CPU_CFLAGS) -Wall
# optimize flag: typically -0, could use -O4 or -fast
diff --git a/make/compilers/gcc-target-default.cfg b/make/compilers/gcc-target-default.cfg
index c0baabb6d4..530df0dced 100644
--- a/make/compilers/gcc-target-default.cfg
+++ b/make/compilers/gcc-target-default.cfg
@@ -18,7 +18,7 @@
# cf. make.info ("Implicit rules/variables" for details)
# NOTE: Should these go to CPPFLAGS ?
-CFLAGS_DEFAULT=-g -Wall -ansi -fasm
+CFLAGS_DEFAULT=-g -Wall
# NOTE: CPU_CFLAGS should probably be renamed to CPU_CPPFLAGS
# NOTE: CPU_DEFINES should probably be merged with CPU_CFLAGS
diff --git a/make/custom/posix.cfg b/make/custom/posix.cfg
index 490f2c940b..7eea257e7f 100644
--- a/make/custom/posix.cfg
+++ b/make/custom/posix.cfg
@@ -4,7 +4,6 @@
# $Id$
#
-# include $(RTEMS_ROOT)/make/target.cfg
include $(RTEMS_ROOT)/make/host.cfg
# Set them here, otherwise gcc-target-default.cfg will set them to values
diff --git a/make/custom/simhppa.cfg b/make/custom/simhppa.cfg
index 375143d166..e072e840d6 100644
--- a/make/custom/simhppa.cfg
+++ b/make/custom/simhppa.cfg
@@ -24,11 +24,9 @@ CPU_CFLAGS = -mpa-risc-1-1 -mportable-runtime
# Possibles:
# -Wall -- lots of warnings
# -pipe -- compiler uses pipes to talk to phases (usually faster)
-# -ansi -- ANSI C compliance
-# -fasm -- ANSI, but allow inline assembler
# -mgas -- we are using gas as assembler
# -fno-keep-inline-functions -- do not emit any inlines as static
-CFLAGS_DEFAULT = $(CPU_CFLAGS) -Wall -ansi -fasm -mgas
+CFLAGS_DEFAULT = $(CPU_CFLAGS) -Wall -mgas
# optimize flag: typically -0, could use -O4 or -fast
# -O4 is ok for RTEMS