diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-05-02 18:00:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-05-02 18:00:06 +0200 |
commit | 34985ea6f26f6f0a383532ad804e44527715c3fe (patch) | |
tree | bd8234f00868e5d57364b3f4d5ec3416a0ed392d /cl-11 |
Initial driver wrappers for VC 11, 12, and 14
Diffstat (limited to 'cl-11')
-rwxr-xr-x | cl-11 | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +#! /usr/bin/env bash + +trap 'exit 1' ERR + +SDK="C:\Program Files (x86)\Windows Kits\8.0" + +INCLUDE="$SDK\include\shared;$SDK\include\um;$SDK\include\winrt" +LIB="$SDK\lib\win8\um\x86" + +VC="C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC" + +INCLUDE="$VC\include;$INCLUDE" +LIB="$VC\lib;$LIB" + +export INCLUDE +export LIB + +export WINEDEBUG=fixme-all + +wine "$VC\bin\cl.exe" $* |