summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-10-30 09:29:19 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-10-30 09:29:19 +0000
commit3c8fa158362db6696a7b3dd4884138ffdc64af35 (patch)
tree71f470286ce3be5b13a74eea58a5a91f6db6f1fa /scripts
parent2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-3c8fa158362db6696a7b3dd4884138ffdc64af35.tar.bz2
2003-10-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* gcc3newlib/gccnewlib.add: Make not building gnat and gcj the default for gcc-3.3.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/ChangeLog5
-rw-r--r--scripts/gcc3newlib/gccnewlib.add5
2 files changed, 8 insertions, 2 deletions
diff --git a/scripts/ChangeLog b/scripts/ChangeLog
index 384f87d2aa..e5b15bc03c 100644
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,8 @@
+2003-10-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * gcc3newlib/gccnewlib.add: Make not building gnat and gcj the
+ default for gcc-3.3.
+
2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* binutils/Makefile.am: Add tic4x.
diff --git a/scripts/gcc3newlib/gccnewlib.add b/scripts/gcc3newlib/gccnewlib.add
index 7fd89fc536..bfa8590ba7 100644
--- a/scripts/gcc3newlib/gccnewlib.add
+++ b/scripts/gcc3newlib/gccnewlib.add
@@ -45,18 +45,19 @@ NoSource: 1
# Use rpm -ba --define 'gnat [0|1]' xxx.spec to override building gnat for
# those targets wanting to support ada.
-%if "%{gcc_version}" >= "3.2"
+%if "%{gcc_version}" >= "3.4"
# default to building gnat
%define _gnat %{?gnat:%gnat}%{!?gnat:1}
%else
# default to not building gnat
+# gcc-3.3: Doesn't support cross-building gnatlib
%define _gnat %{?gnat:%gnat}%{!?gnat:0}
%endif
# Use rpm -ba --define 'gcj [0|1]' xxx.spec to override building gcj for
# those targets wanting to support gcj.
-%if "%{gcc_version}" >= "3.2"
+%if "%{gcc_version}" >= "3.4"
# default to building gcj
%define _gcj %{?gcj:%gcj}%{!?gcj:1}
%else