diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-20 12:38:05 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-20 12:38:05 +0100 |
| commit | 5957d7f7bee7e5fac4035d47ecaaaad022adbfb8 (patch) | |
| tree | f8f38496e6691d4d5ea4317d7b7ae3811ab7e4c0 /misc | |
| parent | 35c102137f9a097584bf1af39e9809064293a0a3 (diff) | |
Implicit Parameter Passing based `context` system (replacing Thread Local Storage (TLS) approach)
Diffstat (limited to 'misc')
| -rw-r--r-- | misc/shell.bat | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/shell.bat b/misc/shell.bat index 8b7da6f80..6135fa507 100644 --- a/misc/shell.bat +++ b/misc/shell.bat @@ -1,9 +1,10 @@ @echo off rem call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86 1> NUL -call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x64 1> NUL +rem call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x64 1> NUL rem call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64 1> NUL rem call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86 1> NUL +call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 1> NUL set _NO_DEBUG_HEAP=1 set path=w:\Odin\misc;%path% |