1
0

Fixed Linux compile again

This commit is contained in:
Tiger Wang 2013-11-26 22:43:22 +00:00
parent 2dee812667
commit f87bb1619e
2 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ ifeq ($(release),1)
# release build - fastest run-time, no gdb support # release build - fastest run-time, no gdb support
################ ################
ifeq ($(disableasm),1) ifeq ($(disableofast),1)
CC_OPTIONS = -g -O3 -DNDEBUG CC_OPTIONS = -g -O3 -DNDEBUG
CXX_OPTIONS = -g -O3 -DNDEBUG CXX_OPTIONS = -g -O3 -DNDEBUG
else else
@ -64,7 +64,7 @@ ifeq ($(profile),1)
# profile build - a release build with symbols and profiling engine built in # profile build - a release build with symbols and profiling engine built in
################ ################
ifeq ($(disableasm),1) ifeq ($(disableofast),1)
CC_OPTIONS = -s -g -ggdb -O3 -pg -DNDEBUG CC_OPTIONS = -s -g -ggdb -O3 -pg -DNDEBUG
CXX_OPTIONS = -s -g -ggdb -O3 -pg -DNDEBUG CXX_OPTIONS = -s -g -ggdb -O3 -pg -DNDEBUG
else else

View File

@ -23,7 +23,7 @@
#include "MersenneTwister.h" #include "MersenneTwister.h"
#include "lib/iniFile/iniFile.h" #include "../lib/iniFile/iniFile.h"
#include "Vector3f.h" #include "Vector3f.h"
#include <fstream> #include <fstream>