diff options
author | Guido van Rossum <guido@python.org> | 1996-07-21 02:53:27 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-21 02:53:27 +0000 |
commit | 81652ab67a404639a29c1239da1a6439eeffbda4 (patch) | |
tree | 1d44e6ed7c4cca2b7a039905e00ff3ddf9c143f9 /configure | |
parent | Additions to the cast of thousands (diff) | |
download | cpython-81652ab67a404639a29c1239da1a6439eeffbda4.tar.gz cpython-81652ab67a404639a29c1239da1a6439eeffbda4.tar.bz2 cpython-81652ab67a404639a29c1239da1a6439eeffbda4.zip |
Use gcc, not gcc-elf on Linux
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index 1f4ad8d4f06..4ee5fe97868 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.27 +# From configure.in Revision: 1.28 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.10 @@ -1447,7 +1447,7 @@ then hp*|HP*) LDSHARED="ld -b";; OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";; DYNIX/ptx*) LDSHARED="ld -G";; - Linux*) LDSHARED="gcc-elf -shared";; + Linux*) LDSHARED="gcc -shared";; FreeBSD*) LDSHARED="ld -Bshareable";; *) LDSHARED="ld";; esac |