| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
See https://github.com/mxe/mxe/issues/1422
|
|
|
|
| |
See https://github.com/mxe/mxe/issues/1422
|
|
|
|
| |
See https://github.com/mxe/mxe/issues/1422
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
$ openssl --help
Invalid command '--help'; type "help" for a list.
$ echo $?
1
$ openssl help
...
$ echo $?
0
fix https://github.com/mxe/mxe/issues/1593
|
|
|
|
|
|
|
|
|
| |
Do not touch lines like this:
$(PKG)_DEPS := $(patsubst $(TOP_DIR)/src/%.mk,%,\
...
(src/qt5.mk)
|
| |
|
|
|
|
| |
fix https://github.com/mxe/mxe/issues/1580
|
|
|
|
|
|
|
| |
Slow HTTP server with lag for tests:
https://gist.github.com/45472174f8bd97989c1eb9bc64d50468
Fix https://github.com/mxe/mxe/issues/1552
|
| |
|
|
|
|
| |
They are useful for applying flags only to cross or only to native targets.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Minimal implementation to strip the [largest files][lf-gist] by
default, mostly made up of gcc/binutils and test programs.
gdal and geos both produce large libraries, but the libs themselves
aren't worth stripping, it's the 20 odd programs produced by gdal
with those libs statically linked that consume the most space.
I'm leaving these undocumented as the defaults seems reasonable and
the interface may well change when we enable debug/release variants.
closes #985
closes #1249
[lf-gist]:https://github.com/mxe/mxe/issues/1249#issuecomment-193392038
|
| |
|
|
|
|
| |
See https://github.com/mxe/mxe/issues/1500
|
|
|
|
| |
See https://github.com/mxe/mxe/issues/1500
|
|
|
|
|
|
| |
index.html: make docs/build-matrix.html a link
mxe-activate: add versions.json
add .PHONY for build-matrix.html
|
|
|
|
| |
See https://github.com/mxe/mxe/issues/1500
|
|
|
|
| |
See https://github.com/mxe/mxe/issues/1500
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
| |
Error message:
$ make update-package-pire
...
bash: -c: line 0: syntax error near unexpected token `|'
...
Overlooked in b52d3c0c9c24e7904908dc50f0c7c6f163556fab
See https://github.com/mxe/mxe/pull/1439
|
|
|
|
|
|
|
| |
This is very handy for testing against a local repo, especially when
upstream changes are happening quickly.
See also #183
|
| |
|
| |
|
|
|
|
| |
It is needed to get full list of tags and apply grep or sed manually.
|
| |
|
|
|
|
|
|
|
|
| |
* use `*.build_` until all packages are converted
see #1159
This commit was amended by Boris Nagaev on Jul 11, 2016.
|
| |
|
|\
| |
| | |
Makefile: note use of target-specific variables
|
| | |
|
|/
|
|
|
| |
see #1415
fixes #1079
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When plugins are specified on the command line, automatic native plugins
are not included (for darwin and wheezy):
```
$ make gmsl-print-MXE_PLUGIN_DIRS MXE_PLUGIN_DIRS=plugins/apps/
MXE_PLUGIN_DIRS = plugins/apps/
```
https://www.gnu.org/software/make/manual/make.html#Override-Directive
https://github.com/mxe/mxe/issues/1259#issuecomment-217376756
|
| |
|
|
|
|
| |
see #1351
|
|
|
|
|
|
| |
* add EDITOR, PS1, TERM for basic functionality of interactive shells
* separate mxe related variables
* identify source of ACLOCAL_PATH and LD_LIBRARY_PATH
|
| |
|
|
|
|
| |
It provides interactive shell with the environment of MXE build.
|
|
|
|
|
|
|
|
|
|
| |
Dependencies of build-matrix.html were written without
regarding plugins. It resulted in the following error
on Debian Wheezy (which uses plugin "plugins/native/wheezy/"):
$ make build-matrix.html
make: *** No rule to make target `src/autoconf.mk',
needed by `build-matrix.html'. Stop.
|
| |
|
| |
|
|
|
|
|
| |
https://github.com/mxe/mxe/pull/1061/files#r49049496
https://github.com/mxe/mxe/issues/1111#issuecomment-169280181
|
|
|
|
|
| |
See https://github.com/mxe/mxe/pull/1134#issuecomment-168873410
See https://github.com/mxe/mxe/pull/1134#issuecomment-169867926
|
| |
|
|
|
|
| |
fix #1063
|
|
|
|
|
| |
See https://github.com/mxe/mxe/issues/1108#issuecomment-169556116
See https://github.com/mxe/mxe/issues/1112
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
* use short form for build status
* use full hash and refs for logs
* add `TERM` to env whitelist (`git log` assumes a terminal)
closes #1095
|
|
|
|
| |
see #1085
|
| |
|
| |
|