diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 43733f5..bdddb5f 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -54,8 +54,7 @@ Note: It is important you use libc++ vs. , otherwise your build will likely fail mkdir build && cd build cmake -DCMAKE_CXX_COMPILER=clang++-3.8 \ -DCMAKE_C_COMPILER=clang-3.8 \ - -DCMAKE_CXX_FLAGS="-O2 -g -stdlib=libc++" \ - -DUSE_SYSTEM_CURL=1 .. + -DCMAKE_CXX_FLAGS="-O2 -g -stdlib=libc++" .. make sudo make install (currently doesn't work, needs to be fixed) ``` @@ -80,7 +79,7 @@ do `sudo apt-get install libc++abi-dev && sudo ln -s /usr/include/libcxxabi/__cx ``` mkdir build && cd build -cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_SYSTEM_CURL=1 +cmake .. -DCMAKE_BUILD_TYPE=Release make sudo make install (currently doesn't work, needs to be fixed) ``` @@ -88,7 +87,7 @@ sudo make install (currently doesn't work, needs to be fixed) ### Building with debug symbols: ``` -cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DUSE_SYSTEM_CURL=1 +cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo make ```