Skip to content

Commit

Permalink
add more cmake options to build-linux.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
q4a committed Sep 22, 2018
1 parent eaedc1c commit 757523c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion doc/howto/build-linux.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,15 @@ git submodule update --init --recursive
rm -rf Externals/cryptopp/*
mkdir bin && cd bin
cmake ..
(or CC=clang CXX=clang++ cmake ..)
make

#To enable all instruction for the local machine:
CFLAGS="-march=native" CXXFLAGS="-march=native" cmake ..
#To enable debugging:
cmake .. -DCMAKE_BUILD_TYPE=Debug
#To use clang:
CC=clang CXX=clang++ cmake ..

Libraries (OLD LIST !!! ):
------
To build X-Ray Engine you'll need following libraries:
Expand Down

0 comments on commit 757523c

Please sign in to comment.