Use gcc for linking on Linux
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 30 Aug 2015 00:11:51 +0000 (18:11 -0600)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 30 Aug 2015 00:11:51 +0000 (18:11 -0600)
db-mysql/Makefile
debian/changelog
uffi/Makefile

index d67afe1bacb61986ce02931541b0d7f777f08a18..de42b71c529f37c4c0eddf1e8b0082c6e4b8f4db 100644 (file)
@@ -30,7 +30,7 @@ CFLAGS:=-I /usr/local/include/mysql -I /usr/include/mysql -I /sw/include/mysql -
 LDFLAGS:=-L/usr/local/lib64/mysql -L/usr/local/lib/mysql -L/usr/lib64/mysql -L/usr/lib/mysql -L/sw/lib -L/opt/local/lib/mysql -L/opt/local/lib/mysql5/mysql -L/usr/local/mysql/lib -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -lmysqlclient -lz -lc
 
 CFLAGS32:=-I /usr/local/include/mysql -I /usr/include/mysql -I /sw/include/mysql -I /opt/local/include/mysql -I /opt/local/include/mysql5/mysql -I /usr/local/mysql/include -m32
-LDFLAGS32:=-L/lib32 -L/usr/lib32 -melf_i386 -lmysqlclient -lz -lc
+LDFLAGS32:=-L/lib32 -L/usr/lib32 -lmysqlclient -lz -lc
 
 ifneq ($(OS_CYGWIN),0)
   CFLAGS:=-I /cygdrive/c/Program\ Files/MySQL/MySQL\ Server\ 5.0/include
@@ -64,14 +64,14 @@ else
         else
           ifneq ($(OS_LINUX64),0)
            gcc $(CFLAGS) -fPIC -c $(source) -o $(object)
-           ld $(LDFLAGS) -shared -soname=$(base) $(object) -o $(shared64_lib)
+           gcc $(LDFLAGS) -fPIC -shared -Wl,-soname=$(base) -lc $(object) -o $(shared64_lib)
            rm $(object)
            @echo "Ensure that you have multiarch i386 build tools and libraries if you want to build 32-bit library"
            -gcc $(CFLAGS32) -fPIC -c $(source) -o $(object)
-           -ld -shared -soname=$(base) $(object) $(LDFLAGS32) -o $(shared_lib)
+           -gcc $(LDFLAGS) -fPIC -shared -Wl,-soname=$(base) -lc $(object) $(LDFLAGS32) -o $(shared_lib)
           else
            gcc $(CFLAGS) -fPIC -c $(source) -o $(object)
-           ld -shared -soname=$(base) $(object) $(LDFLAGS) -o $(shared_lib)
+           gcc -m32 $(LDFLAGS) -fPIC  -shared -Wl,-soname=$(base) -lc $(object) $(LDFLAGS) -o $(shared_lib)
           endif
         endif
       endif
index 9ab9dac398d1686e014fc1a9eefa792887591e58..50e7bba0464e30a6b7e657b094e21a7aa4cd5909 100644 (file)
@@ -1,3 +1,9 @@
+cl-sql (6.6.3-2) unstable; urgency=medium
+
+  * Use gcc for linking (closes:755064)
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 29 Aug 2015 18:10:24 -0600
+
 cl-sql (6.6.3-1) unstable; urgency=medium
 
   * New upstream
index 77203fdfc723150ac9baf5a3b98a149cc14f0e27..7599380f1c047befc356d12833a898ef84cdaad2 100644 (file)
@@ -55,11 +55,11 @@ else
         else
           ifneq ($(OS_LINUX64),0)
            gcc $(CFLAGS) -fPIC -DPIC -c $(source) -o $(object)
-           ld $(LDFLAGS) -shared -soname=$(base) -lc $(object) -o $(shared64_lib)
+           gcc $(LDFLAGS) -fPIC -shared -Wl,-soname=$(base) -lc $(object) -o $(shared64_lib)
            rm -f $(object)
            @echo "Ensure that you have multiarch i386 build tools if you want to build 32-bit library"
            -gcc -m32 $(CFLAGS) -fPIC -DPIC -c $(source) -o $(object)
-           -ld -melf_i386 $(LDFLAGS) -shared -soname=$(base) -lc $(object) -o $(shared_lib)
+           -gcc -m32 $(LDFLAGS) -fPIC -shared -Wl,-soname=$(base) -lc $(object) -o $(shared_lib)
           else
            gcc -fPIC -DPIC -c $(source) -o $(object)
            ld -shared -soname=$(base) -lc $(object) -o $(shared_lib)