diff --git a/project_setup.sh b/project_setup.sh new file mode 100755 index 000000000..8ba22092a --- /dev/null +++ b/project_setup.sh @@ -0,0 +1,9 @@ +#!/bin/sh +PREFIX=${PWD}/bin +CONF_OPTS="-DPCH=1 -DDEBUG=1" +FLAGS="-march=native -O2 -pipe -DNDEBUG" + +rm -Rf build && +mkdir build && +cd build && +cmake .. -DPREFIX="${PREFIX}" ${CONF_OPTS} -DCMAKE_C_FLAGS="${FLAGS}" -DCMAKE_CXX_FLAGS="${FLAGS}" -DCMAKE_C_COMPILER="gcc" -DCMAKE_CXX_COMPILER="g++" diff --git a/src/shared/revision_R2.h b/src/shared/revision_R2.h index 8e1e3f0f7..da00ce414 100644 --- a/src/shared/revision_R2.h +++ b/src/shared/revision_R2.h @@ -1,4 +1,4 @@ #ifndef __REVISION_R2_H__ #define __REVISION_R2_H__ - #define REVISION_R2 "180" + #define REVISION_R2 "181" #endif // __REVISION_R2_H__