Changeset 01ec6c0 in rtems
- Timestamp:
- 05/24/01 19:58:35 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a86c171
- Parents:
- 7c05d28
- Location:
- scripts
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/ChangeLog
r7c05d28 r01ec6c0 1 2001-05-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.in: Remove AC_EXEEXT, treat .exe manually. 4 * gccnewlib/base-gcc.add: Remove cpp. 5 * gccnewlib/gccnewlib.add: mv cpp $target_alias-cpp, update 6 copyright. 7 1 8 2001-04-16 Joel Sherrill <joel@OARcorp.com> 2 9 -
scripts/configure.in
r7c05d28 r01ec6c0 3 3 AC_INIT(binutils) 4 4 5 AM_INIT_AUTOMAKE(rtems-scripts,200 00610-0,no)5 AM_INIT_AUTOMAKE(rtems-scripts,20010516,no) 6 6 7 AC_EXEEXT 7 AC_CANONICAL_HOST 8 9 # Check for .exe suffix. 10 # With autoconf > 2.13 AC_EXEEXT is not what we want to use. 11 AC_MSG_CHECKING([for executable suffix]) 12 case "$host" in 13 i?86-*cygwin*) 14 EXEEXT=.exe ;; 15 esac 16 AC_SUBST(EXEEXT) 17 AC_MSG_RESULT([$EXEEXT]) 8 18 9 19 test -f ./setup.cache || cp ${srcdir}/setup.def ./setup.cache … … 33 43 AC_SUBST(RPM_SPECSdir) 34 44 35 AC_CANONICAL_HOST36 37 45 AC_MSG_CHECKING(for RPM CPU type) 38 case "$ {host}" in39 i [[34567]]86-*linux*)RPM_CPU=i386 ;;40 i [[34567]]86-pc-cygwin*)RPM_CPU=i386 ;;41 sparc-sun-solaris*) 46 case "$host" in 47 i?86-*linux*) RPM_CPU=i386 ;; 48 i?86-*cygwin*) RPM_CPU=i386 ;; 49 sparc-sun-solaris*) RPM_CPU=sparc ;; 42 50 *) 43 51 AC_MSG_ERROR([RPM CPU for ${host} is unknown]) -
scripts/gccnewlib/base-gcc.add
r7c05d28 r01ec6c0 21 21 22 22 %dir /opt/rtems/bin 23 /opt/rtems/bin/cpp@exe_ext@24 23 /opt/rtems/bin/gcov@exe_ext@ 25 24 -
scripts/gccnewlib/gccnewlib.add
r7c05d28 r01ec6c0 2 2 # spec file for building gcc for rtems 3 3 # 4 # Copyright (c) 1999,2000 OARCorp, Huntsville, AL4 # Copyright (c) 1999,2000,2001 OARCorp, Huntsville, AL 5 5 # 6 6 # please send bugfixes or comments to joel@OARcorp.com … … 89 89 cd ../.. 90 90 91 # Bug in gcc-2.95.x: It bogusly tries to share cpp for all targets. 92 # Rename it to target_alias-cpp 93 if test -f $RPM_BUILD_ROOT/opt/rtems/bin/cpp@exe_ext@; 94 then 95 mv $RPM_BUILD_ROOT/opt/rtems/bin/cpp@exe_ext@ \ 96 $RPM_BUILD_ROOT/opt/rtems/bin/@target_alias@-cpp@exe_ext@ 97 fi 98 91 99 # gzip info files 92 100 gzip -f $RPM_BUILD_ROOT/opt/rtems/info/*.info 2>/dev/null -
scripts/gccnewlib/target-gcc.add
r7c05d28 r01ec6c0 17 17 %doc /opt/rtems/man/man1/@target_alias@-g++.1 18 18 19 /opt/rtems/bin/@target_alias@-cpp@exe_ext@ 19 20 /opt/rtems/bin/@target_alias@-c++@exe_ext@ 20 21 /opt/rtems/bin/@target_alias@-g++@exe_ext@
Note: See TracChangeset
for help on using the changeset viewer.