at master 950 B view raw
1diff --git a/platforms/unix/config/make.prg.in b/platforms/unix/config/make.prg.in 2index 96a64a1..05f6114 100644 3--- a/platforms/unix/config/make.prg.in 4+++ b/platforms/unix/config/make.prg.in 5@@ -8,13 +8,13 @@ o = .o 6 a = .a 7 x = 8 COMPILE = $(CC) $(CFLAGS) $(CPPFLAGS) $(XCFLAGS) \ 9- $(LDFLAGS) $(XLDFLAGS) $(TARGET_ARCH) -export-dynamic -c -o 10+ $(LDFLAGS) $(XLDFLAGS) $(TARGET_ARCH) -c -o 11 COMPILEIFP = $(CC) $(CFLAGS) $(XCFLAGS) \ 12 $(LDFLAGS) $(XLDFLAGS) $(TARGET_ARCH) -export-dynamic -fno-omit-frame-pointer -c -o 13 CXXFLAGS = $(CFLAGS) # Hack; can't be bothered to add CXXFLAGS to the configure mess 14 COMPILE.cpp = $(COMPILE.cc) 15 COMPILE.cc = $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(XCFLAGS) \ 16- $(LDFLAGS) $(XLDFLAGS) $(TARGET_ARCH) -export-dynamic -c -o 17+ $(LDFLAGS) $(XLDFLAGS) $(TARGET_ARCH) -c -o 18 LINK = $(LIBTOOL) --mode=link \ 19 $(CC) $(CFLAGS) $(XCFLAGS) \ 20 $(LDFLAGS) $(XLDFLAGS) $(TARGET_ARCH) -export-dynamic -o