From 7a524954fec2fffa9ae152984385ece3719e8a72 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 4 Feb 1998 15:54:31 +0000 Subject: Change suggested by Ralf Corsepius: I am not sure if this is related to this problem, but here is an observation: All config.sub scripts from rtems' intrastructure packages internally transform i386-rtems into i386-pc-rtems newlib-1.8.0-rtems/config.sub i386-rtems --> i386-pc-rtems egcs-1.0/config.sub i386-rtems ---> i386-pc-rtems egcs-1.0.1/config.sub i386-rtems ---> i386-pc-rtems bintutils-2.8.1.0.19/config.sub i386-rtems ---> i386-pc-rtems gas-98xxxx/config.sub i386-rtems ---> i386-pc-rtems The only exception is rtems itself: rtems/config.sub i386-rtems ---> i386-rtems I am not sure if this influences i386-rtems + c++/posix, but this indicates that rtems' config.sub script should to be updated. To fix this, simply copying config.sub e.g. from egcs and removing all i[3456]-rtems* case statement lines from configure.in should be sufficient. BTW, from autoconf's point of view i386-pc-rtems is the correct target conforming autoconf's naming conventions, but using i386-rtems for all packages (infrastructure and rtems) should make no difference. --- configure.in | 3 --- 1 file changed, 3 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 78dfb4e343..f84333f8a2 100644 --- a/configure.in +++ b/configure.in @@ -135,9 +135,6 @@ case "${target}" in skip_startfiles="yes" RTEMS_HAS_POSIX_API=no ;; - i[[3456]]86-rtems*) - target_cpu=i386 - ;; i[[3456]]86-pc-linux*) # unix "simulator" port target_cpu=unix RTEMS_HAS_POSIX_API=no -- cgit v1.2.3