File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,14 @@ if [ -n "$HOST" ]; then
9999 CONFIGFLAGS=" $CONFIGFLAGS --host=$HOST "
100100 CROSS_NAME=$HOST -
101101 EXEEXT=.exe
102+ else
103+ case $( uname) in
104+ MINGW* )
105+ EXEEXT=.exe
106+ ;;
107+ * )
108+ ;;
109+ esac
102110fi
103111if [ -n " $SKIP_INCLUDE_TRIPLET_PREFIX " ]; then
104112 CONFIGFLAGS=" $CONFIGFLAGS --with-widl-includedir=$PREFIX /include"
Original file line number Diff line number Diff line change 99PREFIX=" $1 "
1010cd " $PREFIX "
1111
12+ case $( uname) in
13+ MINGW* )
14+ EXEEXT=.exe
15+ ;;
16+ * )
17+ ;;
18+ esac
19+
1220cd bin
1321for i in bugpoint c-index-test clang-* diagtool dsymutil git-clang-format hmaptool ld64.lld llc lli llvm-* obj2yaml opt sancov sanstats scan-build scan-view verify-uselistorder wasm-ld yaml2obj libclang.dll LTO.dll * .bat; do
1422 basename=$i
You can’t perform that action at this time.
0 commit comments