Updated NEWS, added some more warning flags to SConstruct
This commit is contained in:
parent
845c95670d
commit
238250ffc3
2 changed files with 24 additions and 4 deletions
9
NEWS
9
NEWS
|
@ -1,9 +1,12 @@
|
|||
xboxdrv 0.4.11 - (??/Apr/2010)
|
||||
xboxdrv 0.4.11 - (01/Mai/2010)
|
||||
==============================
|
||||
|
||||
* added --axis-sensitivity
|
||||
* add number aliases for button names
|
||||
* some warnings in the code got cleaned up
|
||||
* added number aliases for button names
|
||||
* added left/right/up/down aliases for dpad
|
||||
* some compiler warnings got cleaned up
|
||||
* confusing uinput error messages got cleaned up
|
||||
* fixed missing 'report sync' event that broke keyboard emulation
|
||||
|
||||
|
||||
xboxdrv 0.4.10 - (17/Feb/2010)
|
||||
|
|
19
SConstruct
19
SConstruct
|
@ -1,6 +1,23 @@
|
|||
# -*- python -*-
|
||||
|
||||
env = Environment(CPPFLAGS=['-g', '-O2', '-Wall', '-ansi', '-pedantic'])
|
||||
if True:
|
||||
env = Environment(CPPFLAGS=['-g', '-O2', '-Wall', '-ansi', '-pedantic'])
|
||||
else:
|
||||
env = Environment(CXXFLAGS= [ "-O3", "-g3",
|
||||
"-ansi",
|
||||
"-pedantic",
|
||||
"-Wall",
|
||||
"-Wextra",
|
||||
"-Wnon-virtual-dtor",
|
||||
"-Weffc++",
|
||||
#"-Wconversion",
|
||||
"-Wold-style-cast",
|
||||
# "-Werror",
|
||||
"-Wshadow",
|
||||
"-Wcast-qual",
|
||||
"-Winit-self", # only works with >= -O1
|
||||
"-Wno-unused-parameter",
|
||||
])
|
||||
conf = Configure(env)
|
||||
|
||||
if not conf.env['CXX']:
|
||||
|
|
Loading…
Reference in a new issue