wscript: use "/LARGEADDRESSAWARE" on windows
This commit is contained in:
parent
823e437005
commit
30f1e02cda
1 changed files with 7 additions and 5 deletions
6
wscript
6
wscript
|
@ -521,14 +521,16 @@ def configure(conf):
|
||||||
'/NODEFAULTLIB:libc',
|
'/NODEFAULTLIB:libc',
|
||||||
'/NODEFAULTLIB:libcd',
|
'/NODEFAULTLIB:libcd',
|
||||||
'/NODEFAULTLIB:libcmt',
|
'/NODEFAULTLIB:libcmt',
|
||||||
'/FORCE'
|
'/FORCE',
|
||||||
|
'/LARGEADDRESSAWARE'
|
||||||
]
|
]
|
||||||
else:
|
else:
|
||||||
linkflags += [
|
linkflags += [
|
||||||
'/INCREMENTAL',
|
'/INCREMENTAL',
|
||||||
'/NODEFAULTLIB:libc',
|
'/NODEFAULTLIB:libc',
|
||||||
'/NODEFAULTLIB:libcd',
|
'/NODEFAULTLIB:libcd',
|
||||||
'/NODEFAULTLIB:libcmtd'
|
'/NODEFAULTLIB:libcmtd',
|
||||||
|
'/LARGEADDRESSAWARE'
|
||||||
]
|
]
|
||||||
|
|
||||||
linkflags += [
|
linkflags += [
|
||||||
|
|
Loading…
Reference in a new issue