-
Notifications
You must be signed in to change notification settings - Fork 21
/
carbon.bat
33 lines (26 loc) · 1.23 KB
/
carbon.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@echo off
set CURR_DIR=%cd%
set BASE_DIR=%~dp0
:: switch to repository root to check for classpath file and possibly call sbt.
cd /D %BASE_DIR%
:: Only call sbt if the classpath file is missing.
if not exist carbon_classpath.txt (
rem Read all lines of the sbt runtime classpath output and parse it against the regex supplied to findstr.
rem The regex looks for lines not starting with '[' and ending in '.jar' as the classpath usually does
rem (and log lines don't, since they are prefixed with [LOGLEVEL]).
echo Generating missing carbon_classpath.txt file from sbt classpath
for /f "tokens=*" %%i in ('sbt "export runtime:dependencyClasspath" ^| findstr "[^\[].*\.jar$"') do (
echo |set /p=%%i > carbon_classpath.txt
)
)
:: Read classpath file in rather cumbersome way to avoid the 1024 character buffer limit.
:: Note: this solutions breaks, once the classpath is longer than 8192 characters!
for /f "delims=" %%x in (carbon_classpath.txt) do set CP=%%x
:: switch back to original directory
cd /D %CURR_DIR%
set JAVA_EXE=java
set JVM_OPTS=-Xss30m -Dfile.encoding=UTF-8
set CARBON_MAIN=viper.carbon.Carbon
set CARBON_OPTS= %*
set CMD=%JAVA_EXE% %JVM_OPTS% -cp "%CP%" %CARBON_MAIN% %CARBON_OPTS%
call %CMD%