| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The following script was applied:
sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE')
sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \
$(git grep -l 'part of MXE.*See index.html')
before='This file is part of MXE. See index.html for further information.'
after='This file is part of MXE. See LICENSE.md for licensing information.'
sed "s/$before/$after/" -i $(git grep -l 'part of MXE')
Then git grep 'index.html for further information' revealed two other files.
One of them was patched manually (patch.mk). Makefile has text
"See index.html for further information" unrelated to licensing.
See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
|
|
|
|
|
|
|
|
|
|
|
| |
Windres doesn't recognise various gcc flags like `-mms-bitfields`,
`-fopenmp`, `-mthreads` etc. (basically anything not `-D` or `-I`).
CMake will filter options if `add_compile_options()` is used, but not
for `add_definitions()`. The developers class it as a "won't fix" as
they believe `add_definitions()` shouldn't be used for such flags.
Fixes #1475
|
|
|
|
|
|
|
|
|
|
|
| |
Removing MXE directory with "rm -rf" used to fail on file
usr/readonly/.gitkeep because directory usr/readonly was readonly.
Now readonly directory is created in tmp-* directory and .gitkeep
is not created for it (because tmp-* is not under usr/).
Problems with removing MXE directory are fixed even in case
of interrupted build.
fix #1221
|
|
|
|
| |
fix #1199
|
| |
|
|
|
|
|
| |
https://github.com/mxe/mxe/pull/1061/files#r49049496
https://github.com/mxe/mxe/issues/1111#issuecomment-169280181
|
|
|
|
| |
It is needed for build-pkg and #1111, Git doesn't see empty directories.
|
| |
|
|
|
|
|
|
| |
* install in MXE native path so only visible to MXE sessions and wrapper scripts
* remove from requirements
* no MXE patches or pkg updates yet
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Now dlfcn-win32 can't detect wine.
From log/dlfcn-win32_i686-w64-mingw32.static:
static: yes
shared: no
wine:
Previously wine was set to "yes wine".
fix #995
|
|
|
|
|
|
| |
This directory (WINEPREFIX=$(PREFIX)/readonly) is not
target specific. It is created once instead of being
created for each target.
|
| |
|
|
|
|
| |
see #904
|
| |
|
|
|
|
|
|
|
|
|
|
| |
CMake with a toolchain file doesn't work properly in some modes.
* --build
* --system-information
* -E
close #932
|
| |
|
| |
|
|
|
|
| |
fixes #841
|
|
|
|
| |
in the spirit of ./configure, detect capabilities instead of versions
|
| |
|
| |
|
| |
|
|
Order-only deps have the benefit of guaranteed early execution and not requiring full rebuilds. It isn't a real package, so we don't want an entry in index.html.
|