From e2f231ba6e7f11aa343d0e6d973fd7fc91904ed0 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 13 Dec 2017 11:57:17 +0300 Subject: boost: fix paths --- _posts/2017-01-07-building-boost.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '_posts') 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 \ ... ``` -- cgit v1.2.3