#!/usr/bin/env bash
#
# Copyright (c) .NET Foundation and contributors. All rights reserved.
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
#
# USAGE: crossgen.sh directory-containing-roslyn
set -e
BIN_DIR="$( cd "$1" && pwd )"
CONTAINING_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
UNAME="$(uname)"
if [ -z "$RID" ]; then
if [ "$UNAME" == "Darwin" ]; then
RID=osx-x64
elif [ "$UNAME" == "Linux" ]; then
RID=linux-x64
else
echo "Unknown OS: $UNAME" 1>&2
exit 1
fi
fi
DEPENDENCIES="$CONTAINING_DIR"/../Targets/Dependencies.props
CORECLR_VERSION="$(grep -o '.*' "$DEPENDENCIES" | sed 's/ *<\/*MicrosoftNETCoreRuntimeCoreCLRVersion> *//g')"
CROSSGEN_UTIL=~/.nuget/packages/runtime."$RID".Microsoft.NETCore.Runtime.CoreCLR/"$CORECLR_VERSION"/tools/crossgen
cd "$BIN_DIR"
# Crossgen currently requires itself to be next to mscorlib
cp "$CROSSGEN_UTIL" "$BIN_DIR"
chmod +x crossgen
./crossgen -nologo -platform_assemblies_paths "$BIN_DIR" mscorlib.dll
./crossgen -nologo -platform_assemblies_paths "$BIN_DIR" System.Collections.Immutable.dll
./crossgen -nologo -platform_assemblies_paths "$BIN_DIR" System.Reflection.Metadata.dll
./crossgen -nologo -platform_assemblies_paths "$BIN_DIR" Microsoft.CodeAnalysis.dll
./crossgen -nologo -platform_assemblies_paths "$BIN_DIR" Microsoft.CodeAnalysis.CSharp.dll
./crossgen -nologo -platform_assemblies_paths "$BIN_DIR" Microsoft.CodeAnalysis.VisualBasic.dll
./crossgen -nologo -platform_assemblies_paths "$BIN_DIR" csc.exe
./crossgen -nologo -platform_assemblies_paths "$BIN_DIR" vbc.exe