aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_posts
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-12-13 12:11:32 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-12-13 12:11:32 +0300
commit29dfc83b39de8a3aef3259d3c0dfd3910145b6a8 (patch)
tree825d19958cf9ca2e017c804cb152e23217ccc6b9 /_posts
parentboost: fix paths (diff)
downloadjekyll-theme-29dfc83b39de8a3aef3259d3c0dfd3910145b6a8.tar.gz
jekyll-theme-29dfc83b39de8a3aef3259d3c0dfd3910145b6a8.zip
boost: fix user configuration files
Diffstat (limited to '_posts')
-rw-r--r--_posts/2017-01-07-building-boost.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/_posts/2017-01-07-building-boost.md b/_posts/2017-01-07-building-boost.md
index 6e9f4a4..4e28669 100644
--- a/_posts/2017-01-07-building-boost.md
+++ b/_posts/2017-01-07-building-boost.md
@@ -124,6 +124,13 @@ $ ./b2 toolset=gcc-mingw \
...
```
+The "user" configuration file above stopped working at some point; not sure as
+to who's to blame, Cygwin or Boost.
+If you see something like "`error: provided command 'i686-w64-mingw32-g++' not
+found`", add ".exe" to the binary name above, so that the whole file reads
+"`using gcc : : i686-w64-mingw32-g++.exe ;`".
+{: .alert .alert-info }
+
### x64
Notice the two major differences from the x86 example:
@@ -158,6 +165,13 @@ $ ./b2 toolset=gcc-mingw \
...
```
+The "user" configuration file above stopped working at some point; not sure as
+to who's to blame, Cygwin or Boost.
+If you see something like "`error: provided command 'x86_64-w64-mingw32-g++'
+not found`", add ".exe" to the binary name above, so that the whole file reads
+"`using gcc : : x86_64-w64-mingw32-g++.exe ;`".
+{: .alert .alert-info }
+
Usage in CMake
--------------