Changeset 83518713 in rtems


Ignore:
Timestamp:
04/26/01 14:09:17 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
65e6b542
Parents:
64c5edc1
Message:

2001-04-26 Ralf Corsepius <corsepiu@…>

  • README.cdn-X: Update.
  • automake/compile.am: Remove -ansi -fasm from CFLAGS_DEFAULT, add @CPPFLAGS@ to CPPFLAGS.
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r64c5edc1 r83518713  
     12001-04-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * README.cdn-X: Update.
     4        * automake/compile.am: Remove -ansi -fasm from CFLAGS_DEFAULT, add
     5        @CPPFLAGS@ to CPPFLAGS.
     6
    172001-04-20      Eric Valette <valette@crf.canon.fr>
    28
  • README.cdn-X

    r64c5edc1 r83518713  
    1414principles.
    1515
     16
    16172. RTEMS
    1718--------
     
    2728We further on assume these to be installed to these locations:
    2829/opt/rtems .. linux cross sparc-rtems toolchain
    29 /opt/i386-cygwin .. linux cross i386-cygwin cross toolchain
     30/opt/cygwin .. linux cross i386-cygwin cross-toolchain
    3031/usr .. linux native toolchain and further tools.
    3132
     
    3839<path>/rtems/configure [options] \
    3940--target=sparc-rtems \
    40 --prefix=/opt/i386-cygwin/rtems/sparc-rtems
     41--prefix=/opt/cygwin/rtems/sparc-rtems
    4142make
    4243make install
    4344
    44 This will build a standard sparc-rtems RTEMS to the given PREFIX.
    45 
     45This will build a standard sparc-rtems RTEMS and install it to the given
     46PREFIX.
    4647
    47482.3 Building i386-cygwin host support
     
    5657--build=`<path>/rtems/config.guess` \
    5758--host=i386-cygwin \
    58 --prefix=/opt/i386-cygwin/rtems
     59--prefix=/opt/cygwin/rtems
     60make
     61make install
     62
     63This will build RTEMS host-tools for i386-cygwin and install it to the given
     64PREFIX.
     65
    5966
    60673. Known issues
     
    6673* The configure scripts expect to find a native c-compiler called "cc". If
    6774your host doesn't have such a "cc" (e.g. Cygwin) or has a non-functional
    68 "cc" (eg. Solaris) try introducing a symlink <functional-cc> -> cc.
    69 (Eg. ln -s <path-to>/gcc /opt/rtems/bin/cc) and make sure this cc can be
     75"cc" (eg. Solaris) try introducing a symlink <functional-cc> -> cc
     76(E.g.: ln -s <path-to>/gcc /opt/rtems/bin/cc) and make sure this cc can be
    7077found on $PATH.
    7178
    72 * It will *not* work for all targets requiring BSP-specific host-tools
     79* It will *not* work for all BSPs requiring BSP-specific host-tools
    7380(Unfortunately, this comprizes i386-rtems/pcx86 and all powerpc BSPs).
    7481
  • automake/compile.am

    r64c5edc1 r83518713  
    4848## All the stuff below is specific to gcc
    4949
    50 CFLAGS_DEFAULT=-g -Wall -ansi -fasm
     50CFLAGS_DEFAULT=-g -Wall
    5151
    5252if RTEMS_USE_GCC272
     
    7676DEFS = @DEFS@
    7777
    78 CPPFLAGS += $(CPU_DEFINES) $(CPU_CFLAGS) \
     78CPPFLAGS += @CPPFLAGS@ $(CPU_DEFINES) $(CPU_CFLAGS) \
    7979   $(DEFINES) $(XCPPFLAGS) $(CPPFLAGS_GCC)
    8080CFLAGS   = $(CFLAGS_DEFAULT) $(XCFLAGS)
Note: See TracChangeset for help on using the changeset viewer.