Don't use windres --use-temp-file option
According to the manual, it should only be needed for Win9x systems not supported since a long time anyhow and this option is apparently buggy in recent MinGW binutils as it results in build errors when used, see https://github.com/msys2/MINGW-packages/issues/6558 Closes https://github.com/wxWidgets/wxWidgets/pull/1961
This commit is contained in:
parent
88a6c8c905
commit
093c3067e8
@ -519,7 +519,7 @@ Set the version of your Mingw installation here.
|
||||
</description>
|
||||
</option>
|
||||
<option name="WINDRES">
|
||||
<default-value>windres --use-temp-file</default-value>
|
||||
<default-value>windres</default-value>
|
||||
<description>
|
||||
Windows resource compiler to use, possibly including extra options.
|
||||
For example, add "-F pe-i386" here if using 64 bit windres for 32 bit build.
|
||||
|
@ -145,5 +145,5 @@ GCC_VERSION ?= 3
|
||||
|
||||
# Windows resource compiler to use, possibly including extra options.
|
||||
# For example, add "-F pe-i386" here if using 64 bit windres for 32 bit build.
|
||||
WINDRES ?= windres --use-temp-file
|
||||
WINDRES ?= windres
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user