Linux: Fixes so it compiles in 32bit. Now a Config dialog for the video plugin, Linux only, if you want to change for Windows, work on it

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@61 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Sonicadvance1
2008-07-23 08:49:58 +00:00
parent f9582bef30
commit 1d175eadd7
7 changed files with 215 additions and 20 deletions

View File

@ -1,6 +1,6 @@
import os
ccflags = '-g -O3 -fno-strict-aliasing -fPIC -m64 -msse2 -Wall -DLOGGING -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE'
ccflags = '-g -O3 -fno-strict-aliasing -fPIC -msse2 -Wall -DLOGGING -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE'
if False:
ccflags += ' -fomit-frame-pointer'
@ -32,8 +32,8 @@ dirs = ["Source/Core/Common/Src",
lib_paths = include_paths
env = Environment(CC="gcc-4.3",
CXX="g++-4.3",
env = Environment(CC="gcc",
CXX="g++",
CCFLAGS=ccflags,
CXXFLAGS=ccflags,
CPPPATH=include_paths,