Changeset 83518713 in rtems
- Timestamp:
- 04/26/01 14:09:17 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 65e6b542
- Parents:
- 64c5edc1
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r64c5edc1 r83518713 1 2001-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 1 7 2001-04-20 Eric Valette <valette@crf.canon.fr> 2 8 -
README.cdn-X
r64c5edc1 r83518713 14 14 principles. 15 15 16 16 17 2. RTEMS 17 18 -------- … … 27 28 We further on assume these to be installed to these locations: 28 29 /opt/rtems .. linux cross sparc-rtems toolchain 29 /opt/ i386-cygwin .. linux cross i386-cygwin crosstoolchain30 /opt/cygwin .. linux cross i386-cygwin cross-toolchain 30 31 /usr .. linux native toolchain and further tools. 31 32 … … 38 39 <path>/rtems/configure [options] \ 39 40 --target=sparc-rtems \ 40 --prefix=/opt/ i386-cygwin/rtems/sparc-rtems41 --prefix=/opt/cygwin/rtems/sparc-rtems 41 42 make 42 43 make install 43 44 44 This will build a standard sparc-rtems RTEMS to the given PREFIX.45 45 This will build a standard sparc-rtems RTEMS and install it to the given 46 PREFIX. 46 47 47 48 2.3 Building i386-cygwin host support … … 56 57 --build=`<path>/rtems/config.guess` \ 57 58 --host=i386-cygwin \ 58 --prefix=/opt/i386-cygwin/rtems 59 --prefix=/opt/cygwin/rtems 60 make 61 make install 62 63 This will build RTEMS host-tools for i386-cygwin and install it to the given 64 PREFIX. 65 59 66 60 67 3. Known issues … … 66 73 * The configure scripts expect to find a native c-compiler called "cc". If 67 74 your 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 (E g.ln -s <path-to>/gcc /opt/rtems/bin/cc) and make sure this cc can be75 "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 70 77 found on $PATH. 71 78 72 * It will *not* work for all targets requiring BSP-specific host-tools79 * It will *not* work for all BSPs requiring BSP-specific host-tools 73 80 (Unfortunately, this comprizes i386-rtems/pcx86 and all powerpc BSPs). 74 81 -
automake/compile.am
r64c5edc1 r83518713 48 48 ## All the stuff below is specific to gcc 49 49 50 CFLAGS_DEFAULT=-g -Wall -ansi -fasm50 CFLAGS_DEFAULT=-g -Wall 51 51 52 52 if RTEMS_USE_GCC272 … … 76 76 DEFS = @DEFS@ 77 77 78 CPPFLAGS += $(CPU_DEFINES) $(CPU_CFLAGS) \78 CPPFLAGS += @CPPFLAGS@ $(CPU_DEFINES) $(CPU_CFLAGS) \ 79 79 $(DEFINES) $(XCPPFLAGS) $(CPPFLAGS_GCC) 80 80 CFLAGS = $(CFLAGS_DEFAULT) $(XCFLAGS)
Note: See TracChangeset
for help on using the changeset viewer.