summaryrefslogtreecommitdiff
path: root/build-dll
diff options
context:
space:
mode:
authorTor Lillqvist <tml@src.gnome.org>1999-07-12 23:11:27 +0000
committerTor Lillqvist <tml@src.gnome.org>1999-07-12 23:11:27 +0000
commitda87b1ac8505eacf293b9dfc985e5ae93a82a4b7 (patch)
tree2d0aecfae2fedcc105ff54440e96c7bc512accd4 /build-dll
parent4982cdbe7ee3494e164502e0574376fea278b807 (diff)
downloadglib-da87b1ac8505eacf293b9dfc985e5ae93a82a4b7.tar.gz
Correct URL for mingw runtime sources.
* README.win32: Correct URL for mingw runtime sources. * build-dll: Combine commands with &&. * glib.h: Map also rmdir() and hypot() for MSVCRT library. * makefile.cygwin.in * tests/makefile.cygwin.in: New DLL naming style. GCC-compiled DLLs are now called *.gcc.dll, to avoid binary incompatibilities with MSVC-compiled versions. * makefile.msc.in: Cosmetics.
Diffstat (limited to 'build-dll')
-rw-r--r--build-dll6
1 files changed, 3 insertions, 3 deletions
diff --git a/build-dll b/build-dll
index d3d5d5405..1f5c3817c 100644
--- a/build-dll
+++ b/build-dll
@@ -29,11 +29,11 @@ for F in $ldargs; do
esac
done
-$GCC -s -mdll -mno-cygwin -Wl,--base-file,$library.base -o $dllfile $ldargs
+$GCC -s -mdll -mno-cygwin -Wl,--base-file,$library.base -o $dllfile $ldargs &&
$DLLTOOL --as=$AS --dllname $dllfile $defswitch --base-file $library.base --output-exp $library.exp $objs &&
-$GCC -s -mdll -mno-cygwin -Wl,--base-file,$library.base,$library.exp -o $dllfile $ldargs
+$GCC -s -mdll -mno-cygwin -Wl,--base-file,$library.base,$library.exp -o $dllfile $ldargs &&
$DLLTOOL --as=$AS --dllname $dllfile $defswitch --base-file $library.base --output-exp $library.exp $objs &&
-$GCC -mdll -mno-cygwin -Wl,$library.exp -o $dllfile $ldargs
+$GCC -mdll -mno-cygwin -Wl,$library.exp -o $dllfile $ldargs &&
$DLLTOOL --as=$AS --dllname $dllfile $defswitch --output-lib lib$libname.a $objs
rm $library.base $library.exp 2>/dev/null