mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-12 16:18:03 +00:00
Merge pull request #244 from SanyaSho/dev/largeaddressaware
wscript: use "/LARGEADDRESSAWARE" on windows
This commit is contained in:
commit
1a584655d9
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 New Issue
Block a user