Changeset 7d9818c in rtems
- Timestamp:
- Mar 13, 2003, 11:03:53 AM (18 years ago)
- Children:
- 04a6b0da
- Parents:
- 19c69fa1
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r19c69fa1 r7d9818c 1 2003-03-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * acinclude.m4: Fix broken comments. 4 Add hidden option --enable-experimental. 5 * README.cdn-X: Update. 6 * configure.ac: Build tools/build as host and build-host tools to 7 accomodate those BSPs applying packhex in <BSP>.cfg. 8 Build tools/cpu as build-host tools. 9 1 10 2003-03-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 11 -
README.cdn-X
r19c69fa1 r7d9818c 39 39 <path>/rtems/configure [options] \ 40 40 --target=sparc-rtems \ 41 --prefix=/opt/cygwin /rtems/sparc-rtems41 --prefix=/opt/cygwin 42 42 make 43 43 make install … … 57 57 --build=`<path>/rtems/config.guess` \ 58 58 --host=i386-cygwin \ 59 --prefix=/opt/cygwin /rtems59 --prefix=/opt/cygwin 60 60 make 61 61 make install 62 62 63 This will build RTEMS host-tools for i386-cygwin and install itto the given63 This will build RTEMS host-tools for i386-cygwin and install them to the given 64 64 PREFIX. 65 65 … … 71 71 to require additional work. Do not expect this to work. 72 72 73 * The configure scripts expect to find a native c-compiler called "cc". If74 your host doesn't have such a "cc" (e.g. Cygwin) or has a non-functional75 "cc" (eg. Solaris) try introducing a symlink <functional-cc> -> cc76 (E.g.: ln -s <path-to>/gcc /opt/rtems/bin/cc) and make sure this cc can be77 found on $PATH.78 79 * It will *not* work for all BSPs requiring BSP-specific host-tools80 (Unfortunately, this comprizes i386-rtems/pcx86 and all powerpc BSPs).81 82 * Incomplete support for *_FOR_TARGET, *_FOR_HOST, *_FOR_BUILD environment83 variables.84 85 73 * The <toplevel>/make/ directory hierarchy is not treated correctly. -
acinclude.m4
r19c69fa1 r7d9818c 73 73 sed -e "s%\([[^ ]][[^ ]]*\)%$host_alias/\1%g"` 74 74 host_configdirs="${host_configdirs}" 75 # target_SUBDIRS=`echo "${target_configdirs}" | \ 76 # sed -e "s%\([[^ ]][[^ ]]*\)%$target_alias/\1%g"` 77 # target_configdirs="${target_configdirs}"], 78 [dnl 75 AS_IF([test x"$enable_experimental" = x"yes" ],[ 76 target_SUBDIRS=`echo "${target_configdirs}" | \ 77 sed -e "s%\([[^ ]][[^ ]]*\)%$target_alias/\1%g"` 78 target_configdirs="${target_configdirs}" 79 ]) 80 ],[dnl 79 81 AS_IF([test $build = $target], 80 82 [dnl b!=h, h!=t, b=t … … 84 86 sed -e "s%\([[^ ]][[^ ]]*\)%$host_alias/\1%g"` 85 87 host_configdirs="${host_configdirs}" 86 # target_SUBDIRS="${target_configdirs}" 87 # target_configdirs="${target_configdirs}"], 88 [dnl b!=h, h!=t, b!=t 88 AS_IF([test x"$enable_experimental" = x"yes" ],[ 89 target_SUBDIRS="${target_configdirs}" 90 target_configdirs="${target_configdirs}" 91 ]) 92 ],[dnl b!=h, h!=t, b!=t 89 93 build_SUBDIRS="${build_configdirs}" 90 94 build_configdirs="${build_configdirs}" … … 92 96 sed -e "s%\([[^ ]][[^ ]]*\)%$host_alias/\1%g"` 93 97 host_configdirs="${host_configdirs}" 94 # target_SUBDIRS=`echo "${target_configdirs}" | \ 95 # sed -e "s%\([[^ ]][[^ ]]*\)%$target_alias/\1%g"` 96 # target_configdirs="${target_configdirs}" 98 AS_IF([test x"$enable_experimental" = x"yes" ],[ 99 target_SUBDIRS=`echo "${target_configdirs}" | \ 100 sed -e "s%\([[^ ]][[^ ]]*\)%$target_alias/\1%g"` 101 target_configdirs="${target_configdirs}" 102 ]) 97 103 ]) 98 104 ]) -
configure.ac
r19c69fa1 r7d9818c 54 54 55 55 RTEMS_HOST_CONFIG_SUBDIRS([tools/build]) 56 RTEMS_HOST_CONFIG_SUBDIRS([tools/cpu]) 56 RTEMS_BUILD_CONFIG_SUBDIRS([tools/cpu]) 57 58 # Some BSPs carelessly apply these tools as build-tools 59 AS_IF([test $host != $build],[ 60 RTEMS_BUILD_CONFIG_SUBDIRS([tools/build]) 61 ]) 57 62 58 63 AS_IF([test x"${enable_docs}" = x"yes"],
Note: See TracChangeset
for help on using the changeset viewer.