Skip to content

Instantly share code, notes, and snippets.

@kg
Created January 23, 2019 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kg/33b159824ebc7989f6dc1faf37ff2b93 to your computer and use it in GitHub Desktop.
Save kg/33b159824ebc7989f6dc1faf37ff2b93 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# usage: start-compiler-server.sh <working directory> <log path> <pipename>
# ensure that VBCS_RUNTIME and VBCS_LOCATION environment variables are set.
set -u
set -e
if [ -s "$VBCS_LOCATION" ]; then
cd $1
echo "RoslynCommandLineLogFile=$2 $VBCS_RUNTIME --gc-params=nursery-size=64m $VBCS_LOCATION -pipename:$3 &"
echo . > "$2"
RoslynCommandLineLogFile=$2 $VBCS_RUNTIME --gc-params=nursery-size=64m "$VBCS_LOCATION" -pipename:$3 &
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo Compiler server started with PID $!.
else
echo Failed to start compiler server.
fi;
else
echo No compiler server found at path "$VBCS_LOCATION". Ensure that VBCS_LOCATION is set in config.make or passed as a parameter to make.
echo Use ENABLE_COMPILER_SERVER=0 to disable the use of the compiler server and continue to build.
exit 1
fi;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment