We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaedc1c commit 757523cCopy full SHA for 757523c
doc/howto/build-linux.txt
@@ -25,9 +25,15 @@ git submodule update --init --recursive
25
rm -rf Externals/cryptopp/*
26
mkdir bin && cd bin
27
cmake ..
28
-(or CC=clang CXX=clang++ cmake ..)
29
make
30
+#To enable all instruction for the local machine:
31
+CFLAGS="-march=native" CXXFLAGS="-march=native" cmake ..
32
+#To enable debugging:
33
+cmake .. -DCMAKE_BUILD_TYPE=Debug
34
+#To use clang:
35
+CC=clang CXX=clang++ cmake ..
36
+
37
Libraries (OLD LIST !!! ):
38
------
39
To build X-Ray Engine you'll need following libraries:
0 commit comments