LD should be based on $CC and not hardcoded to gcc
Fix the default loader so it will be whatever the default C compiler is ($CC).
This commit is contained in:
parent
6a5ec481c8
commit
eeb669c1c9
|
|
@ -25,7 +25,7 @@ CXX=@IVCXX@
|
|||
CFLAGS="@PIC@ @IVCFLAGS@ -I@INCLUDEDIR@"
|
||||
|
||||
# These are used for linking...
|
||||
LD=gcc
|
||||
LD=$CC
|
||||
LDFLAGS32="@SHARED@ -L@LIBDIR@"
|
||||
LDFLAGS64="@SHARED@ -L@LIBDIR64@"
|
||||
LDFLAGS="$LDFLAGS64"
|
||||
|
|
|
|||
Loading…
Reference in New Issue