diff options
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -6484,7 +6484,7 @@ case $opsys in | |||
| 6484 | START_FILES='pre-crt0.o $(CRT_DIR)/crt0.o' | 6484 | START_FILES='pre-crt0.o $(CRT_DIR)/crt0.o' |
| 6485 | ;; | 6485 | ;; |
| 6486 | netbsd | openbsd ) | 6486 | netbsd | openbsd ) |
| 6487 | if test -f $(CRT_DIR)/crti.o; then | 6487 | if test -f $CRT_DIR/crti.o; then |
| 6488 | LIB_STANDARD='-lgcc -lc -lgcc $(CRT_DIR)/crtend.o $(CRT_DIR)/crtn.o' | 6488 | LIB_STANDARD='-lgcc -lc -lgcc $(CRT_DIR)/crtend.o $(CRT_DIR)/crtn.o' |
| 6489 | START_FILES='pre-crt0.o $(CRT_DIR)/crt0.o $(CRT_DIR)/crti.o $(CRT_DIR)/crtbegin.o' | 6489 | START_FILES='pre-crt0.o $(CRT_DIR)/crt0.o $(CRT_DIR)/crti.o $(CRT_DIR)/crtbegin.o' |
| 6490 | else | 6490 | else |
| @@ -26578,13 +26578,13 @@ if test "x$GCC" = "xyes"; then | |||
| 26578 | ## FIXME? s/gnu-linux.h used to define LIB_GCC as below, then | 26578 | ## FIXME? s/gnu-linux.h used to define LIB_GCC as below, then |
| 26579 | ## immediately undefine it again and redefine it to empty. | 26579 | ## immediately undefine it again and redefine it to empty. |
| 26580 | ## Was the C_SWITCH_X_SITE part really necessary? | 26580 | ## Was the C_SWITCH_X_SITE part really necessary? |
| 26581 | ## LIB_GCC=`$(CC) $(C_SWITCH_X_SITE) -print-libgcc-file-name` | 26581 | ## LIB_GCC=`$CC $C_SWITCH_X_SITE -print-libgcc-file-name` |
| 26582 | LIB_GCC= | 26582 | LIB_GCC= |
| 26583 | fi | 26583 | fi |
| 26584 | ;; | 26584 | ;; |
| 26585 | 26585 | ||
| 26586 | ## Ask GCC where to find libgcc.a. | 26586 | ## Ask GCC where to find libgcc.a. |
| 26587 | *) LIB_GCC=`$(CC) -print-libgcc-file-name 2> /dev/null` ;; | 26587 | *) LIB_GCC=`$CC -print-libgcc-file-name 2> /dev/null` ;; |
| 26588 | esac | 26588 | esac |
| 26589 | fi | 26589 | fi |
| 26590 | 26590 | ||