diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-30 08:55:58 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-30 08:55:58 +0200 |
commit | 5740a400d80669b3e8c4d8d2133e3663e675a8b7 (patch) | |
tree | f1751e24e3984b68a7f01320959dc1afcd085a85 /doc | |
parent | 6c0791a4f5e0d754d214b66fd71871fd078b0693 (diff) |
Add w64-mingw32 cross-compilation example
Diffstat (limited to 'doc')
-rw-r--r-- | doc/intro.cli | 69 |
1 files changed, 46 insertions, 23 deletions
diff --git a/doc/intro.cli b/doc/intro.cli index efc8e8f..f870b62 100644 --- a/doc/intro.cli +++ b/doc/intro.cli @@ -6,7 +6,6 @@ // TODO // -// @@ STL christmass egg? // @@ refs to further docs // // STYLE @@ -19,28 +18,6 @@ // - Maximum <pre> line is 70 characters. // -/* - -$ mkdir hello-mingw32 -$ cd hello-mingw32 -$ bpkg create cxx config.cxx=i686-w64-mingw32-g++ config.bin.ar=i686-w64-mingw32-ar config.bin.lib=static config.cxx.loptions=-static -bpkg create -d . --wipe cxx config.cxx=x86_64-w64-mingw32-g++ config.bin.ar=x86_64-w64-mingw32-ar config.bin.lib=static config.cxx.loptions=-static -created new configuration in /tmp/hello-mingw32/ - -$ bpkg add https://build2.org/pkg/1/hello/stable -added repository build2.org/hello/stable - -$ bpkg fetch -fetching build2.org/hello/stable -2 package(s) in 1 repository(s) - -$ bpkg build -y hello - -$ wine hello-1.0.0/hello.exe Windows -Hello, Windows! - -*/ - " \h|TL;DR| @@ -940,6 +917,52 @@ c++ ~/work/build2/hello/hello2/cxx{hello} ld hello2-1.0.0/exe{hello} updated hello2 1.0.0 \ + +Are you still here? Ok, one last example. This one is for \i{STL} (for those +missing the connection, Stephan T. Lavavej, said, and I am paraphrasing, that +he will never build a shared library and will never use a build system/package +manager more complex than a single makefile; got to respect the man's +convictions). + +The Warning section above said there is no Windows support yet. But nobody +said anything about cross-compilers: + +\ +$ mkdir hello-mingw32 +$ cd hello-mingw32 + +$ bpkg create cxx \ +config.cxx=x86_64-w64-mingw32-g++ \ +config.bin.ar=x86_64-w64-mingw32-ar \ +config.bin.lib=static config.cxx.loptions=-static +created new configuration in /tmp/hello-mingw32/ + +$ bpkg add https://build2.org/pkg/1/hello/stable +added repository build2.org/hello/stable + +$ bpkg fetch +fetching build2.org/hello/stable +2 package(s) in 1 repository(s) + +$ bpkg build -y hello +bpkg build -y hello +libhello-1.0.0+1.tar.gz 100% of 1489 B 983 kBps 00m01s +fetched libhello 1.0.0+1 +unpacked libhello 1.0.0+1 +hello-1.0.0.tar.gz 100% of 1030 B 6882 kBps 00m01s +fetched hello 1.0.0 +unpacked hello 1.0.0 +configured libhello 1.0.0+1 +configured hello 1.0.0 +c++ hello-1.0.0/cxx{hello} +c++ libhello-1.0.0+1/hello/cxx{hello} +ld libhello-1.0.0+1/hello/libso{hello} +ld hello-1.0.0/exe{hello} +updated hello 1.0.0 + +$ wine hello-1.0.0/hello.exe Windows +Hello, Windows! +\ " " |