diff options
| author | pravic <[email protected]> | 2016-04-28 23:17:01 +0300 |
|---|---|---|
| committer | pravic <[email protected]> | 2016-04-28 23:17:01 +0300 |
| commit | 3cfcce55aea3ba683a3630bbeb5d3a5a040f878e (patch) | |
| tree | e4fa155a214492c5e74041f40090c6e41dd18f56 | |
| parent | add explicit data-layout fields for the target description (diff) | |
| download | kmd-env-rs-3cfcce55aea3ba683a3630bbeb5d3a5a040f878e.tar.xz kmd-env-rs-3cfcce55aea3ba683a3630bbeb5d3a5a040f878e.zip | |
tweak: /driver option specifies /fixed:no implicitly as well
| -rw-r--r-- | .cargo/i686-sys-windows-msvc.json | 2 | ||||
| -rw-r--r-- | .cargo/x86_64-sys-windows-msvc.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.cargo/i686-sys-windows-msvc.json b/.cargo/i686-sys-windows-msvc.json index ddc9bc6..4fe6187 100644 --- a/.cargo/i686-sys-windows-msvc.json +++ b/.cargo/i686-sys-windows-msvc.json @@ -45,7 +45,7 @@ "relocation-model": "dynamic-no-pic", "pre-link-args": ["/NOLOGO", "/NODEFAULTLIB", "/SUBSYSTEM:NATIVE", "/DRIVER", "/RELEASE", "/NXCOMPAT", "/DYNAMICBASE", - "/INCREMENTAL:NO", "/MANIFEST:NO", "/FIXED:No"], + "/INCREMENTAL:NO", "/MANIFEST:NO"], "post-link-args": ["/OPT:REF,ICF", "ntoskrnl.lib", "hal.lib", "/noimplib", "/ENTRY:DriverEntry", "/DEF:exports.def", "/MERGE:.edata=.rdata", "/MERGE:.rustc=.data"], diff --git a/.cargo/x86_64-sys-windows-msvc.json b/.cargo/x86_64-sys-windows-msvc.json index d4f096f..404d5c8 100644 --- a/.cargo/x86_64-sys-windows-msvc.json +++ b/.cargo/x86_64-sys-windows-msvc.json @@ -44,7 +44,7 @@ "relocation-model": "dynamic-no-pic", "pre-link-args": ["/NOLOGO", "/NODEFAULTLIB", "/SUBSYSTEM:NATIVE", "/DRIVER", "/RELEASE", "/NXCOMPAT", "/DYNAMICBASE", - "/INCREMENTAL:NO", "/MANIFEST:NO", "/FIXED:No"], + "/INCREMENTAL:NO", "/MANIFEST:NO"], "post-link-args": ["/OPT:REF,ICF", "ntoskrnl.lib", "hal.lib", "/noimplib", "/ENTRY:DriverEntry", "/DEF:exports.def", "/MERGE:.edata=.rdata", "/MERGE:.rustc=.data"], |