Skip to content

Commit d9f6283

Browse files
committed
clang-cl (#153)
1 parent 1b5ce24 commit d9f6283

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

mcwin32/support/cclconfig.bat

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
@echo off
2+
rem
3+
rem Clang-cl/Microsoft Visual Studio C/C++
4+
rem
5+
echo Configure: Clang-cl/Microsoft Visual Studio C/C++
6+
7+
rem perl: assume within path
8+
if not defined PERL (
9+
set PERL=perl
10+
)
11+
12+
rem iscc: command line interface
13+
if not defined INNO (
14+
set INNO="C:/Program Files (x86)/Inno Setup 5/iscc"
15+
)
16+
17+
%PERL% ./support/config_windows.pl makelib.pl --inno=%INNO% %* clangcl

mcwin32/support/cclx64config.bat

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
@echo off
2+
rem
3+
rem Clang-cl/Microsoft Visual Studio/x64
4+
rem
5+
echo Configure: Clang-cl/Microsoft Visual Studio C/C++ x64
6+
7+
rem perl: assume within path
8+
if not defined PERL (
9+
set PERL=perl
10+
)
11+
12+
rem iscc: command line interface
13+
if not defined INNO (
14+
set INNO="C:/Program Files (x86)/Inno Setup 5/iscc"
15+
)
16+
17+
%PERL% ./support/config_windows.pl makelib.pl --inno=%INNO% %* clangcl-x64

0 commit comments

Comments
 (0)