mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 00:32:24 +00:00
Fix conditional syntax in autobuild script.
This commit is contained in:
parent
da14bc6398
commit
4dac1f29d5
2 changed files with 15 additions and 14 deletions
|
|
@ -25,7 +25,8 @@ export CC=$3
|
|||
|
||||
if test "$3" = "msc-x86"; then
|
||||
cmd /c 'C:\Program Files (x86)\Microsoft Visual C++ Build Tools\vcbuildtools.bat' x86 '&&' cd 'c:\cygwin\home\dave\msc-x86\voc' '&&' make full
|
||||
else; if test "$3" = "msc-x64"; then
|
||||
else
|
||||
if test "$3" = "msc-x64"; then
|
||||
cmd /c 'C:\Program Files (x86)\Microsoft Visual C++ Build Tools\vcbuildtools.bat' x64 '&&' cd 'c:\cygwin\home\dave\msc-x64\voc' '&&' make full
|
||||
else
|
||||
$sudo make full
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue