diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-12-13 11:57:17 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-12-13 11:57:17 +0300 |
commit | e2f231ba6e7f11aa343d0e6d973fd7fc91904ed0 (patch) | |
tree | 63d0dd6116c1194a8a3651fab9711e77aa095541 /_posts/2017-01-07-building-boost.md | |
parent | bump dependencies (diff) | |
download | jekyll-theme-e2f231ba6e7f11aa343d0e6d973fd7fc91904ed0.tar.gz jekyll-theme-e2f231ba6e7f11aa343d0e6d973fd7fc91904ed0.zip |
boost: fix paths
Diffstat (limited to '')
-rw-r--r-- | _posts/2017-01-07-building-boost.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/_posts/2017-01-07-building-boost.md b/_posts/2017-01-07-building-boost.md index 1a73908..6e9f4a4 100644 --- a/_posts/2017-01-07-building-boost.md +++ b/_posts/2017-01-07-building-boost.md @@ -211,8 +211,8 @@ $ cmake -G "Unix Makefiles" \ -D CMAKE_BUILD_TYPE=Debug \ -D CMAKE_C_COMPILER=i686-w64-mingw32-gcc \ -D CMAKE_CXX_COMPILER=i686-w64-mingw32-g++ \ - -D BOOST_ROOT=/cygdrive/d/workspace/third-party/boost_1_61_0/mingw \ - -D BOOST_LIBRARYDIR=/cygdrive/d/workspace/third-party/boost_1_61_0/mingw/x86/debug/lib \ + -D BOOST_ROOT=/cygdrive/d/workspace/third-party/boost_1_61_0/mingw \ + -D BOOST_LIBRARYDIR=/cygdrive/d/workspace/third-party/boost_1_61_0/mingw/stage/x86/debug/lib \ -D Boost_USE_STATIC_LIBS=ON \ ... ``` @@ -227,8 +227,8 @@ $ cmake -G "Unix Makefiles" \ -D CMAKE_BUILD_TYPE=Debug \ -D CMAKE_C_COMPILER=x86_64-w64-mingw32-gcc \ -D CMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ \ - -D BOOST_ROOT=/cygdrive/d/workspace/third-party/boost_1_61_0/mingw \ - -D BOOST_LIBRARYDIR=/cygdrive/d/workspace/third-party/boost_1_61_0/mingw/x64/debug/lib \ + -D BOOST_ROOT=/cygdrive/d/workspace/third-party/boost_1_61_0/mingw \ + -D BOOST_LIBRARYDIR=/cygdrive/d/workspace/third-party/boost_1_61_0/mingw/stage/x64/debug/lib \ -D Boost_USE_STATIC_LIBS=ON \ ... ``` |