diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-08-10 08:47:53 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-08-10 08:47:53 +0000 |
commit | eb4352ab0675309fe6cb1ad38cf070340a338e50 (patch) | |
tree | d82433e0cd2c504866aa654698aa8a0b1a92de9f /distrib | |
parent | 2ebe8addfaae2bc65e6b87ad369928b02053014f (diff) | |
download | haskell-eb4352ab0675309fe6cb1ad38cf070340a338e50.tar.gz |
FIX #1271: create manifests, and embed them in executables on Windows
We have 4 new flags:
-fno-gen-manifest
suppresses creation of foo.exe.manifest
-fno-embed-manifest
suppresses embedding of the manifest in the executable
-pgmwindres
specify a program to use instead of windres
-optwindres
extra options to pass to windres
"windres" is now copied from mingw and included in a binary
distribution.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/prep-bin-dist-mingw | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/distrib/prep-bin-dist-mingw b/distrib/prep-bin-dist-mingw index 45c9743dc1..55411e520a 100644 --- a/distrib/prep-bin-dist-mingw +++ b/distrib/prep-bin-dist-mingw @@ -144,6 +144,7 @@ cp $mingw_lib/* gcc-lib/ cp $mingw_bin/as.exe gcc-lib/ cp $mingw_bin/ld.exe gcc-lib/ cp $mingw_bin/ar.exe bin/ +cp $mingw_bin/windres.exe bin/ # Note: later versions of dlltool.exe depend on a bfd helper DLL. cp $mingw_bin/dllwrap.exe gcc-lib/ cp $mingw_bin/dlltool.exe gcc-lib/ |