From 417881c7bad5e48f8ffc222a4821e8e77f03bffc Mon Sep 17 00:00:00 2001 From: N00byKing Date: Tue, 10 Apr 2018 19:01:29 +0200 Subject: [PATCH] Updated Building for Linux (markdown) --- Building-for-Linux.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 ```