Browse Source

Merge pull request #244 from SanyaSho/dev/largeaddressaware

wscript: use "/LARGEADDRESSAWARE" on windows
pull/249/head
nillerusr 1 year ago committed by GitHub
parent
commit
1a584655d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      wscript

6
wscript

@ -521,14 +521,16 @@ def configure(conf): @@ -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…
Cancel
Save