Changeset 01ec6c0 in rtems


Ignore:
Timestamp:
05/24/01 19:58:35 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
a86c171
Parents:
7c05d28
Message:

2001-05-15 Ralf Corsepius <corsepiu@…>

  • configure.in: Remove AC_EXEEXT, treat .exe manually.
  • gccnewlib/base-gcc.add: Remove cpp.
  • gccnewlib/gccnewlib.add: mv cpp $target_alias-cpp, update copyright.
Location:
scripts
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • scripts/ChangeLog

    r7c05d28 r01ec6c0  
     12001-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
    182001-04-16      Joel Sherrill <joel@OARcorp.com>
    29
  • scripts/configure.in

    r7c05d28 r01ec6c0  
    33AC_INIT(binutils)
    44
    5 AM_INIT_AUTOMAKE(rtems-scripts,20000610-0,no)
     5AM_INIT_AUTOMAKE(rtems-scripts,20010516,no)
    66
    7 AC_EXEEXT
     7AC_CANONICAL_HOST
     8
     9# Check for .exe suffix.
     10# With autoconf > 2.13 AC_EXEEXT is not what we want to use.
     11AC_MSG_CHECKING([for executable suffix])
     12case "$host" in
     13i?86-*cygwin*)
     14  EXEEXT=.exe ;;
     15esac
     16AC_SUBST(EXEEXT)
     17AC_MSG_RESULT([$EXEEXT])
    818
    919test -f ./setup.cache || cp ${srcdir}/setup.def ./setup.cache
     
    3343AC_SUBST(RPM_SPECSdir)
    3444
    35 AC_CANONICAL_HOST
    36 
    3745AC_MSG_CHECKING(for RPM CPU type)
    38 case "${host}" in
    39   i[[34567]]86-*linux*)    RPM_CPU=i386 ;;
    40   i[[34567]]86-pc-cygwin*) RPM_CPU=i386 ;;
    41   sparc-sun-solaris*)    RPM_CPU=sparc ;;
     46case "$host" in
     47  i?86-*linux*)         RPM_CPU=i386 ;;
     48  i?86-*cygwin*)        RPM_CPU=i386 ;;
     49  sparc-sun-solaris*)   RPM_CPU=sparc ;;
    4250  *)
    4351    AC_MSG_ERROR([RPM CPU for ${host} is unknown])
  • scripts/gccnewlib/base-gcc.add

    r7c05d28 r01ec6c0  
    2121
    2222%dir /opt/rtems/bin
    23 /opt/rtems/bin/cpp@exe_ext@
    2423/opt/rtems/bin/gcov@exe_ext@
    2524
  • scripts/gccnewlib/gccnewlib.add

    r7c05d28 r01ec6c0  
    22# spec file for building gcc for rtems
    33#
    4 # Copyright  (c) 1999,2000 OARCorp, Huntsville, AL
     4# Copyright  (c) 1999,2000,2001 OARCorp, Huntsville, AL
    55#
    66# please send bugfixes or comments to joel@OARcorp.com
     
    8989  cd ../..
    9090
     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
    9199  # gzip info files
    92100  gzip -f $RPM_BUILD_ROOT/opt/rtems/info/*.info 2>/dev/null
  • scripts/gccnewlib/target-gcc.add

    r7c05d28 r01ec6c0  
    1717%doc /opt/rtems/man/man1/@target_alias@-g++.1
    1818
     19/opt/rtems/bin/@target_alias@-cpp@exe_ext@
    1920/opt/rtems/bin/@target_alias@-c++@exe_ext@
    2021/opt/rtems/bin/@target_alias@-g++@exe_ext@
Note: See TracChangeset for help on using the changeset viewer.