mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
cleanup make.bat and .travis.yml
This commit is contained in:
parent
377956e969
commit
059cb9cb74
2 changed files with 2 additions and 6 deletions
4
make.bat
4
make.bat
|
@ -28,7 +28,7 @@ if not exist "%gccpath%" (
|
|||
goto:msvcstrap
|
||||
)
|
||||
|
||||
gcc -DUNICODE -D_UNICODE -std=gnu11 -w -o v2.exe vc\v_win.c
|
||||
gcc -std=gnu11 -w -o v2.exe vc\v_win.c
|
||||
if %ERRORLEVEL% NEQ 0 (
|
||||
echo gcc failed to compile - Create an issue at 'https://github.com/vlang'
|
||||
exit /b 1
|
||||
|
@ -60,7 +60,7 @@ if exist "%InstallDir%\Common7\Tools\vsdevcmd.bat" (
|
|||
goto :nocompiler
|
||||
)
|
||||
|
||||
cl.exe -DUNICODE -D_UNICODE /nologo /w /volatile:ms /Fo.v.c.obj /O2 /MD vc\v_win.c user32.lib kernel32.lib advapi32.lib shell32.lib /link /NOLOGO /OUT:v2.exe /INCREMENTAL:NO
|
||||
cl.exe /nologo /w /volatile:ms /Fo.v.c.obj /O2 /MD vc\v_win.c user32.lib kernel32.lib advapi32.lib shell32.lib /link /NOLOGO /OUT:v2.exe /INCREMENTAL:NO
|
||||
if %ERRORLEVEL% NEQ 0 (
|
||||
echo cl.exe failed to build V
|
||||
goto :compileerror
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue