diff options
author | Boris Nagaev <bnagaev@gmail.com> | 2016-07-10 11:51:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-10 11:51:59 (GMT) |
commit | 2ee728cf99c0fe022e3fa9fddd0cfa41d79c8111 (patch) | |
tree | cc6557472120d3efa321a6bb3dccec5ae13a7f8d /plugins/examples/host-toolchain/README.md | |
parent | 0f69807bae7f9987f282701644db7bba21f95487 (diff) | |
parent | ff380791b7aff3cd8d047e91322b7f933869e2b7 (diff) | |
download | mxe-2ee728cf99c0fe022e3fa9fddd0cfa41d79c8111.zip mxe-2ee728cf99c0fe022e3fa9fddd0cfa41d79c8111.tar.gz mxe-2ee728cf99c0fe022e3fa9fddd0cfa41d79c8111.tar.bz2 |
Merge pull request #1431 from tonytheodore/qt5-host-tools
add qt5-host-tools example plugin
Diffstat (limited to 'plugins/examples/host-toolchain/README.md')
-rw-r--r-- | plugins/examples/host-toolchain/README.md | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/plugins/examples/host-toolchain/README.md b/plugins/examples/host-toolchain/README.md index 1478edf..a22215e 100644 --- a/plugins/examples/host-toolchain/README.md +++ b/plugins/examples/host-toolchain/README.md @@ -2,7 +2,9 @@ Cross Compiling a Host Toolchain -------------------------------- This plugin demonstrates a minimal working toolchain built with MXE to -execute on a Windows host. To build: +execute on a Windows host. + +#### GCC ``` make gcc-host MXE_PLUGIN_DIRS=plugins/examples/host-toolchain/ @@ -15,6 +17,15 @@ Once complete, copy `usr/{target}` to an appropriate Windows machine and execute the `usr\{target}\bin\test-gcc-host.bat` batch file. This builds and runs the `libgomp` test as a sanity check. +#### Qt5 tools (`qmake.exe`, `rcc.exe`, etc.) + +``` +make qt5-host-tools MXE_PLUGIN_DIRS=plugins/examples/host-toolchain/ +``` + +This will build `qtbase` then run a second pass to cross-compile the qt tools +and install them to `usr/{target}/qt5-host-tools/bin`. + Why? ---- |