Merge pull request #244 from SanyaSho/dev/largeaddressaware
wscript: use "/LARGEADDRESSAWARE" on windows
This commit is contained in:
commit
07571e8b48
1 changed files with 7 additions and 5 deletions
6
wscript
6
wscript
|
@ -521,14 +521,16 @@ def configure(conf):
|
|||
'/NODEFAULTLIB:libc',
|
||||
'/NODEFAULTLIB:libcd',
|
||||
'/NODEFAULTLIB:libcmt',
|
||||
'/FORCE'
|
||||
'/FORCE',
|
||||
'/LARGEADDRESSAWARE'
|
||||
]
|
||||
else:
|
||||
linkflags += [
|
||||
'/INCREMENTAL',
|
||||
'/NODEFAULTLIB:libc',
|
||||
'/NODEFAULTLIB:libcd',
|
||||
'/NODEFAULTLIB:libcmtd'
|
||||
'/NODEFAULTLIB:libcmtd',
|
||||
'/LARGEADDRESSAWARE'
|
||||
]
|
||||
|
||||
linkflags += [
|
||||
|
|
Loading…
Reference in a new issue