3 # resolve python-version to use
4 if [ "$PYTHON" == "" ] ; then
5 if ! PYTHON=$(command -v python2.7 || command -v python2 || command -v python)
7 echo "Unable to locate build-dependency python2.x!" 1>&2
12 # validate python-dependency
13 # useful in case of explicitly set option.
14 if ! command -v $PYTHON > /dev/null
16 echo "Unable to locate build-dependency python2.x ($PYTHON)!" 1>&2
22 echo "Usage: $0 [BuildArch] [BuildType] [-verbose] [-coverage] [-cross] [-clangx.y] [-ninja] [-configureonly] [-skipconfigure] [-skipnative] [-skipmscorlib] [-skiptests] [-stripsymbols] [-ignorewarnings] [-cmakeargs] [-bindir]"
23 echo "BuildArch can be: -x64, -x86, -arm, -armel, -arm64"
24 echo "BuildType can be: -debug, -checked, -release"
25 echo "-coverage - optional argument to enable code coverage build (currently supported only for Linux and OSX)."
26 echo "-ninja - target ninja instead of GNU make"
27 echo "-clangx.y - optional argument to build using clang version x.y."
28 echo "-cross - optional argument to signify cross compilation,"
29 echo " - will use ROOTFS_DIR environment variable if set."
30 echo "-crosscomponent - optional argument to build cross-architecture component,"
31 echo " - will use CAC_ROOTFS_DIR environment variable if set."
32 echo "-nopgooptimize - do not use profile guided optimizations."
33 echo "-pgoinstrument - generate instrumented code for profile guided optimization enabled binaries."
34 echo "-ibcinstrument - generate IBC-tuning-enabled native images when invoking crossgen."
35 echo "-configureonly - do not perform any builds; just configure the build."
36 echo "-skipconfigure - skip build configuration."
37 echo "-skipnative - do not build native components."
38 echo "-skipmscorlib - do not build mscorlib.dll."
39 echo "-skiptests - skip the tests in the 'tests' subdirectory."
40 echo "-skipnuget - skip building nuget packages."
41 echo "-skiprestoreoptdata - skip restoring optimization data used by profile-based optimizations."
42 echo "-skipcrossgen - skip native image generation"
43 echo "-verbose - optional argument to enable verbose build output."
44 echo "-skiprestore: skip restoring packages ^(default: packages are restored during build^)."
45 echo "-disableoss: Disable Open Source Signing for System.Private.CoreLib."
46 echo "-officialbuildid=^<ID^>: specify the official build ID to be used by this build."
47 echo "-Rebuild: passes /t:rebuild to the build projects."
48 echo "-stripSymbols - Optional argument to strip native symbols during the build."
49 echo "-skipgenerateversion - disable version generation even if MSBuild is supported."
50 echo "-ignorewarnings - do not treat warnings as errors"
51 echo "-cmakeargs - user-settable additional arguments passed to CMake."
52 echo "-bindir - output directory (defaults to $__ProjectRoot/bin)"
53 echo "-buildstandalonegc - builds the GC in a standalone mode. Can't be used with \"cmakeargs\"."
54 echo "-msbuildonunsupportedplatform - build managed binaries even if distro is not officially supported."
55 echo "-numproc - set the number of build processes."
62 if [ "$__HostOS" == "Linux" ]; then
63 if [ -e /etc/os-release ]; then
64 source /etc/os-release
65 if [[ $ID == "alpine" ]]; then
66 # remove the last version digit
67 VERSION_ID=${VERSION_ID%.*}
69 __HostDistroRid="$ID.$VERSION_ID-$__HostArch"
70 elif [ -e /etc/redhat-release ]; then
71 local redhatRelease=$(</etc/redhat-release)
72 if [[ $redhatRelease == "CentOS release 6."* || $redhatRelease == "Red Hat Enterprise Linux Server release 6."* ]]; then
73 __HostDistroRid="rhel.6-$__HostArch"
77 if [ "$__HostOS" == "FreeBSD" ]; then
78 __freebsd_version=`sysctl -n kern.osrelease | cut -f1 -d'.'`
79 __HostDistroRid="freebsd.$__freebsd_version-$__HostArch"
82 if [ "$__HostDistroRid" == "" ]; then
83 echo "WARNING: Can not determine runtime id for current distro."
89 if [ $__CrossBuild == 1 ]; then
90 if [ "$__BuildOS" == "Linux" ]; then
91 if [ ! -e $ROOTFS_DIR/etc/os-release ]; then
92 if [ -e $ROOTFS_DIR/android_platform ]; then
93 source $ROOTFS_DIR/android_platform
94 export __DistroRid="$RID"
96 echo "WARNING: Can not determine runtime id for current distro."
100 source $ROOTFS_DIR/etc/os-release
101 export __DistroRid="$ID.$VERSION_ID-$__BuildArch"
105 export __DistroRid="$__HostDistroRid"
108 if [ "$__BuildOS" == "OSX" ]; then
112 # Portable builds target the base RID
113 if [ $__PortableBuild == 1 ]; then
114 if [ "$__BuildOS" == "Linux" ]; then
115 export __DistroRid="linux-$__BuildArch"
116 elif [ "$__BuildOS" == "OSX" ]; then
117 export __DistroRid="osx-$__BuildArch"
118 elif [ "$__BuildOS" == "FreeBSD" ]; then
119 export __DistroRid="freebsd-$__BuildArch"
126 echo Setting up directories for build
128 mkdir -p "$__RootBinDir"
130 mkdir -p "$__LogsDir"
131 mkdir -p "$__IntermediatesDir"
133 if [ $__CrossBuild == 1 ]; then
134 mkdir -p "$__CrossComponentBinDir"
135 mkdir -p "$__CrossCompIntermediatesDir"
139 # Check the system to ensure the right prereqs are in place
143 echo "Checking prerequisites..."
145 # Check presence of CMake on the path
146 hash cmake 2>/dev/null || { echo >&2 "Please install cmake before running this script"; exit 1; }
149 # Minimum required version of clang is version 3.9 for arm/armel cross build
150 if [[ $__CrossBuild == 1 && ("$__BuildArch" == "arm" || "$__BuildArch" == "armel") ]]; then
151 if ! [[ "$__ClangMajorVersion" -gt "3" || ( $__ClangMajorVersion == 3 && $__ClangMinorVersion == 9 ) ]]; then
152 echo "Please install clang3.9 or latest for arm/armel cross build"; exit 1;
157 hash clang-$__ClangMajorVersion.$__ClangMinorVersion 2>/dev/null || hash clang$__ClangMajorVersion$__ClangMinorVersion 2>/dev/null || hash clang 2>/dev/null || { echo >&2 "Please install clang-$__ClangMajorVersion.$__ClangMinorVersion before running this script"; exit 1; }
163 # we only need optdata on a Release build
164 if [[ "$__BuildType" != "Release" ]]; then __SkipRestoreOptData=1; fi
166 if [[ ( $__SkipRestoreOptData == 0 ) && ( $__isMSBuildOnNETCoreSupported == 1 ) ]]; then
167 echo "Restoring the OptimizationData package"
168 "$__ProjectRoot/run.sh" sync -optdata
170 echo "Failed to restore the optimization data package."
175 if [ $__isMSBuildOnNETCoreSupported == 1 ]; then
176 # Parse the optdata package versions out of msbuild so that we can pass them on to CMake
177 local DotNetCli="$__ProjectRoot/Tools/dotnetcli/dotnet"
178 if [ ! -f $DotNetCli ]; then
179 "$__ProjectRoot/init-tools.sh"
181 echo "Failed to restore buildtools."
185 local OptDataProjectFilePath="$__ProjectRoot/src/.nuget/optdata/optdata.csproj"
186 __PgoOptDataVersion=$(DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 $DotNetCli msbuild $OptDataProjectFilePath /t:DumpPgoDataPackageVersion /nologo | sed 's/^\s*//')
187 __IbcOptDataVersion=$(DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 $DotNetCli msbuild $OptDataProjectFilePath /t:DumpIbcDataPackageVersion /nologo | sed 's/^\s*//')
191 generate_event_logging_sources()
193 if [ $__SkipCoreCLR == 1 ]; then
197 # Event Logging Infrastructure
198 __GeneratedIntermediate="$__IntermediatesDir/Generated"
199 __GeneratedIntermediateEventProvider="$__GeneratedIntermediate/eventprovider_new"
200 __GeneratedIntermediateEventPipe="$__GeneratedIntermediate/eventpipe_new"
202 if [[ -d "$__GeneratedIntermediateEventProvider" ]]; then
203 rm -rf "$__GeneratedIntermediateEventProvider"
206 if [[ -d "$__GeneratedIntermediateEventPipe" ]]; then
207 rm -rf "$__GeneratedIntermediateEventPipe"
210 if [[ ! -d "$__GeneratedIntermediate/eventprovider" ]]; then
211 mkdir -p "$__GeneratedIntermediate/eventprovider"
214 if [[ ! -d "$__GeneratedIntermediate/eventpipe" ]]; then
215 mkdir -p "$__GeneratedIntermediate/eventpipe"
218 mkdir -p "$__GeneratedIntermediateEventProvider"
219 mkdir -p "$__GeneratedIntermediateEventPipe"
221 __PythonWarningFlags="-Wall"
222 if [[ $__IgnoreWarnings == 0 ]]; then
223 __PythonWarningFlags="$__PythonWarningFlags -Werror"
227 if [[ $__SkipCoreCLR == 0 || $__ConfigureOnly == 1 ]]; then
228 echo "Laying out dynamically generated files consumed by the build system "
229 echo "Laying out dynamically generated Event Logging Test files"
230 $PYTHON -B $__PythonWarningFlags "$__ProjectRoot/src/scripts/genXplatEventing.py" --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --exc "$__ProjectRoot/src/vm/ClrEtwAllMeta.lst" --testdir "$__GeneratedIntermediateEventProvider/tests"
232 if [[ $? != 0 ]]; then
238 echo "Laying out dynamically generated EventPipe Implementation"
239 $PYTHON -B $__PythonWarningFlags "$__ProjectRoot/src/scripts/genEventPipe.py" --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --intermediate "$__GeneratedIntermediateEventPipe" --exc "$__ProjectRoot/src/vm/ClrEtwAllMeta.lst"
240 if [[ $? != 0 ]]; then
248 #determine the logging system
251 echo "Laying out dynamically generated Event Logging Implementation of Lttng"
252 $PYTHON -B $__PythonWarningFlags "$__ProjectRoot/src/scripts/genXplatLttng.py" --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --intermediate "$__GeneratedIntermediateEventProvider"
253 if [[ $? != 0 ]]; then
262 echo "Cleaning the temp folder of dynamically generated Event Logging files"
263 $PYTHON -B $__PythonWarningFlags -c "import sys;sys.path.insert(0,\"$__ProjectRoot/src/scripts\"); from Utilities import *;UpdateDirectory(\"$__GeneratedIntermediate/eventprovider\",\"$__GeneratedIntermediateEventProvider\")"
264 if [[ $? != 0 ]]; then
268 rm -rf "$__GeneratedIntermediateEventProvider"
270 echo "Cleaning the temp folder of dynamically generated EventPipe files"
271 $PYTHON -B $__PythonWarningFlags -c "import sys;sys.path.insert(0,\"$__ProjectRoot/src/scripts\"); from Utilities import *;UpdateDirectory(\"$__GeneratedIntermediate/eventpipe\",\"$__GeneratedIntermediateEventPipe\")"
272 if [[ $? != 0 ]]; then
276 rm -rf "$__GeneratedIntermediateEventPipe"
283 intermediatesForBuild="$3"
284 extraCmakeArguments="$4"
287 if [ $skipCondition == 1 ]; then
288 echo "Skipping $message build."
292 # All set to commence the build
293 echo "Commencing build of $message for $__BuildOS.$__BuildArch.$__BuildType in $intermediatesForBuild"
298 if [ $__UseNinja == 1 ]; then
300 buildFile="build.ninja"
301 if ! buildTool=$(command -v ninja || command -v ninja-build); then
302 echo "Unable to locate ninja!" 1>&2
307 if [ $__SkipConfigure == 0 ]; then
308 # if msbuild is not supported, then set __SkipGenerateVersion to 1
309 if [ $__isMSBuildOnNETCoreSupported == 0 ]; then __SkipGenerateVersion=1; fi
310 # Drop version.cpp file
311 __versionSourceFile="$intermediatesForBuild/version.cpp"
312 if [ $__SkipGenerateVersion == 0 ]; then
314 "$__ProjectRoot/run.sh" build -Project=$__ProjectDir/build.proj -generateHeaderUnix -NativeVersionSourceFile=$__versionSourceFile $__RunArgs $__UnprocessedBuildArgs
316 # Generate the dummy version.cpp, but only if it didn't exist to make sure we don't trigger unnecessary rebuild
317 __versionSourceLine="static char sccsid[] __attribute__((used)) = \"@(#)No version information produced\";"
318 if [ -e $__versionSourceFile ]; then
319 read existingVersionSourceLine < $__versionSourceFile
321 if [ "$__versionSourceLine" != "$existingVersionSourceLine" ]; then
322 echo $__versionSourceLine > $__versionSourceFile
327 pushd "$intermediatesForBuild"
328 # Regenerate the CMake solution
329 echo "Invoking \"$__ProjectRoot/src/pal/tools/gen-buildsys-clang.sh\" \"$__ProjectRoot\" $__ClangMajorVersion $__ClangMinorVersion $platformArch $__BuildType $__CodeCoverage $__IncludeTests $generator $extraCmakeArguments $__cmakeargs"
330 "$__ProjectRoot/src/pal/tools/gen-buildsys-clang.sh" "$__ProjectRoot" $__ClangMajorVersion $__ClangMinorVersion $platformArch $__BuildType $__CodeCoverage $__IncludeTests $generator "$extraCmakeArguments" "$__cmakeargs"
334 if [ ! -f "$intermediatesForBuild/$buildFile" ]; then
335 echo "Failed to generate $message build project!"
340 if [ $__ConfigureOnly == 1 ]; then
341 echo "Finish configuration & skipping $message build."
345 # Check that the makefiles were created.
346 pushd "$intermediatesForBuild"
348 echo "Executing $buildTool install -j $__NumProc"
350 $buildTool install -j $__NumProc
352 echo "Failed to build $message."
359 build_cross_arch_component()
361 __SkipCrossArchBuild=1
363 # check supported cross-architecture components host(__HostArch)/target(__BuildArch) pair
364 if [[ ("$__BuildArch" == "arm" || "$__BuildArch" == "armel") && "$__CrossArch" == "x86" ]]; then
365 export CROSSCOMPILE=0
366 __SkipCrossArchBuild=0
368 # building x64-host/arm-target cross-architecture component need to use cross toolchain of x86
369 if [ "$__HostArch" == "x64" ]; then
370 export CROSSCOMPILE=1
377 export __CMakeBinDir="$__CrossComponentBinDir"
378 export CROSSCOMPONENT=1
381 if [ $CROSSCOMPILE == 1 ]; then
382 TARGET_ROOTFS="$ROOTFS_DIR"
383 if [ -n "$CAC_ROOTFS_DIR" ]; then
384 export ROOTFS_DIR="$CAC_ROOTFS_DIR"
386 export ROOTFS_DIR="$__ProjectRoot/cross/rootfs/$__CrossArch"
390 __ExtraCmakeArgs="-DCLR_CMAKE_TARGET_ARCH=$__BuildArch -DCLR_CMAKE_TARGET_OS=$__BuildOS -DCLR_CMAKE_PACKAGES_DIR=$__PackagesDir -DCLR_CMAKE_PGO_INSTRUMENT=$__PgoInstrument -DCLR_CMAKE_OPTDATA_VERSION=$__PgoOptDataVersion -DCLR_CMAKE_PGO_OPTIMIZE=$__PgoOptimize"
391 build_native $__SkipCrossArchBuild "$__CrossArch" "$__CrossCompIntermediatesDir" "$__ExtraCmakeArgs" "cross-architecture component"
393 # restore ROOTFS_DIR, CROSSCOMPONENT, and CROSSCOMPILE
394 if [ -n "$TARGET_ROOTFS" ]; then
395 export ROOTFS_DIR="$TARGET_ROOTFS"
397 export CROSSCOMPONENT=
398 export CROSSCOMPILE=1
401 isMSBuildOnNETCoreSupported()
403 __isMSBuildOnNETCoreSupported=$__msbuildonunsupportedplatform
405 if [ $__isMSBuildOnNETCoreSupported == 1 ]; then
409 if [ "$__HostArch" == "x64" ]; then
410 if [ "$__HostOS" == "Linux" ]; then
411 __isMSBuildOnNETCoreSupported=1
412 # note: the RIDs below can use globbing patterns
413 UNSUPPORTED_RIDS=("debian.9-x64" "ubuntu.17.04-x64")
414 for UNSUPPORTED_RID in "${UNSUPPORTED_RIDS[@]}"
416 if [[ $__HostDistroRid == $UNSUPPORTED_RID ]]; then
417 __isMSBuildOnNETCoreSupported=0
421 elif [ "$__HostOS" == "OSX" ]; then
422 __isMSBuildOnNETCoreSupported=1
430 if [ $__SkipCrossgen == 1 ]; then
431 echo "Skipping generating native image"
435 if [ $__SkipCoreCLR == 0 -a -e $__BinDir/crossgen ]; then
436 echo "Generating native image for System.Private.CoreLib."
437 echo "$__BinDir/crossgen /Platform_Assemblies_Paths $__BinDir/IL $__IbcTuning /out $__BinDir/System.Private.CoreLib.dll $__BinDir/IL/System.Private.CoreLib.dll"
438 $__BinDir/crossgen /Platform_Assemblies_Paths $__BinDir/IL $__IbcTuning /out $__BinDir/System.Private.CoreLib.dll $__BinDir/IL/System.Private.CoreLib.dll
439 if [ $? -ne 0 ]; then
440 echo "Failed to generate native image for System.Private.CoreLib."
444 if [ "$__BuildOS" == "Linux" ]; then
445 echo "Generating symbol file for System.Private.CoreLib."
446 $__BinDir/crossgen /CreatePerfMap $__BinDir $__BinDir/System.Private.CoreLib.dll
447 if [ $? -ne 0 ]; then
448 echo "Failed to generate symbol file for System.Private.CoreLib."
458 if [ $__isMSBuildOnNETCoreSupported == 0 ]; then
459 echo "System.Private.CoreLib.dll build unsupported."
463 if [ $__SkipMSCorLib == 1 ]; then
464 echo "Skipping building System.Private.CoreLib."
468 echo "Commencing build of managed components for $__BuildOS.$__BuildArch.$__BuildType"
472 if [[ "$__IbcTuning" -eq "" ]]; then
473 __ExtraBuildArgs="$__ExtraBuildArgs -OptimizationDataDir=\"$__PackagesDir/optimization.$__BuildOS-$__BuildArch.IBC.CoreCLR/$__IbcOptDataVersion/data/\""
474 __ExtraBuildArgs="$__ExtraBuildArgs -EnableProfileGuidedOptimization=true"
476 $__ProjectRoot/run.sh build -Project=$__ProjectDir/build.proj -MsBuildLog="/flp:Verbosity=normal;LogFile=$__LogsDir/System.Private.CoreLib_$__BuildOS__$__BuildArch__$__BuildType.log" -BuildTarget -__IntermediatesDir=$__IntermediatesDir -__RootBinDir=$__RootBinDir -BuildNugetPackage=false -UseSharedCompilation=false $__RunArgs $__ExtraBuildArgs $__UnprocessedBuildArgs
478 if [ $? -ne 0 ]; then
479 echo "Failed to build managed components."
483 # The cross build generates a crossgen with the target architecture.
484 if [ $__CrossBuild != 1 ]; then
485 # The architecture of host pc must be same architecture with target.
486 if [[ ( "$__HostArch" == "$__BuildArch" ) ]]; then
488 elif [[ ( "$__HostArch" == "x64" ) && ( "$__BuildArch" == "x86" ) ]]; then
490 elif [[ ( "$__HostArch" == "arm64" ) && ( "$__BuildArch" == "arm" ) ]]; then
498 generate_NugetPackages()
500 # We can only generate nuget package if we also support building mscorlib as part of this build.
501 if [ $__isMSBuildOnNETCoreSupported == 0 ]; then
502 echo "Nuget package generation unsupported."
506 # Since we can build mscorlib for this OS, did we build the native components as well?
507 if [ $__SkipCoreCLR == 1 ]; then
508 echo "Unable to generate nuget packages since native components were not built."
512 echo "Generating nuget packages for "$__BuildOS
513 echo "DistroRid is "$__DistroRid
514 echo "ROOTFS_DIR is "$ROOTFS_DIR
516 $__ProjectRoot/run.sh build -Project=$__SourceDir/.nuget/packages.builds -MsBuildLog="/flp:Verbosity=normal;LogFile=$__LogsDir/Nuget_$__BuildOS__$__BuildArch__$__BuildType.log" -BuildTarget -__IntermediatesDir=$__IntermediatesDir -__RootBinDir=$__RootBinDir -BuildNugetPackage=false -UseSharedCompilation=false $__RunArgs $__UnprocessedBuildArgs
518 if [ $? -ne 0 ]; then
519 echo "Failed to generate Nuget packages."
524 echo "Commencing CoreCLR Repo build"
526 # Argument types supported by this script:
528 # Build architecture - valid values are: x64, ARM.
529 # Build Type - valid values are: Debug, Checked, Release
531 # Set the default arguments for build
533 # Obtain the location of the bash script to figure out where the root of the repo is.
534 __ProjectRoot="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
536 # Use uname to determine what the CPU is.
538 # Some Linux platforms report unknown for platform, but the arch for machine.
539 if [ "$CPUName" == "unknown" ]; then
545 echo "Unsupported CPU $CPUName detected, build might not succeed!"
556 echo "Unsupported CPU $CPUName detected, build might not succeed!"
571 echo "Unknown CPU $CPUName detected, configuring as if for x64"
577 # Use uname to determine what the OS is.
611 echo "Unsupported OS $OSName detected, configuring as if for Linux"
619 __IncludeTests=Include_Tests
622 # Set the various build properties here so that CMake and MSBuild can pick them up
623 __ProjectDir="$__ProjectRoot"
624 __SourceDir="$__ProjectDir/src"
625 __PackagesDir="$__ProjectDir/packages"
626 __RootBinDir="$__ProjectDir/bin"
627 __UnprocessedBuildArgs=
641 __SkipRestoreOptData=0
644 __ClangMajorVersion=0
645 __ClangMinorVersion=0
646 __NuGetPath="$__PackagesDir/NuGet.exe"
650 __SkipGenerateVersion=0
653 __msbuildonunsupportedplatform=0
654 __PgoOptDataVersion=""
655 __IbcOptDataVersion=""
657 # Get the number of processors available to the scheduler
658 # Other techniques such as `nproc` only get the number of
659 # processors available to a single process.
660 if [ `uname` = "FreeBSD" ]; then
661 __NumProc=`sysctl hw.ncpu | awk '{ print $2+1 }'`
662 elif [ `uname` = "NetBSD" ]; then
663 __NumProc=$(($(getconf NPROCESSORS_ONLN)+1))
664 elif [ `uname` = "Darwin" ]; then
665 __NumProc=$(($(getconf _NPROCESSORS_ONLN)+1))
667 __NumProc=$(nproc --all)
671 if [ $# -le 0 ]; then
675 lowerI="$(echo $1 | awk '{print tolower($0)}')"
715 __CodeCoverage=Coverage
722 -portablebuild=false)
730 stripsymbols|-stripsymbols)
731 __cmakeargs="$__cmakeargs -DSTRIP_SYMBOLS=true"
735 __ClangMajorVersion=3
736 __ClangMinorVersion=5
740 __ClangMajorVersion=3
741 __ClangMinorVersion=6
745 __ClangMajorVersion=3
746 __ClangMinorVersion=7
750 __ClangMajorVersion=3
751 __ClangMinorVersion=8
755 __ClangMajorVersion=3
756 __ClangMinorVersion=9
760 __ClangMajorVersion=4
761 __ClangMinorVersion=0
768 pgoinstrument|-pgoinstrument)
772 nopgooptimize|-nopgooptimize)
774 __SkipRestoreOptData=1
777 ibcinstrument|-ibcinstrument)
778 __IbcTuning="/Tuning"
781 configureonly|-configureonly)
787 skipconfigure|-skipconfigure)
791 skipnative|-skipnative)
792 # Use "skipnative" to use the same option name as build.cmd.
796 skipcoreclr|-skipcoreclr)
797 # Accept "skipcoreclr" for backwards-compatibility.
801 crosscomponent|-crosscomponent)
805 skipmscorlib|-skipmscorlib)
809 skipgenerateversion|-skipgenerateversion)
810 __SkipGenerateVersion=1
813 skiprestoreoptdata|-skiprestoreoptdata)
814 __SkipRestoreOptData=1
817 skipcrossgen|-skipcrossgen)
821 includetests|-includetests)
824 skiptests|-skiptests)
828 skipnuget|-skipnuget)
832 ignorewarnings|-ignorewarnings)
834 __cmakeargs="$__cmakeargs -DCLR_CMAKE_WARNINGS_ARE_ERRORS=OFF"
837 cmakeargs|-cmakeargs)
839 __cmakeargs="$__cmakeargs $2"
842 echo "ERROR: 'cmakeargs' requires a non-empty option argument"
850 if [ ! -d $__RootBinDir ]; then
853 __RootBinParent=$(dirname $__RootBinDir)
854 __RootBinName=${__RootBinDir##*/}
855 __RootBinDir="$(cd $__RootBinParent &>/dev/null && printf %s/%s $PWD $__RootBinName)"
858 echo "ERROR: 'bindir' requires a non-empty option argument"
862 buildstandalonegc|-buildstandalonegc)
863 __cmakeargs="$__cmakeargs -DFEATURE_STANDALONE_GC=1 -DFEATURE_STANDALONE_GC_ONLY=1"
865 msbuildonunsupportedplatform|-msbuildonunsupportedplatform)
866 __msbuildonunsupportedplatform=1
873 echo "ERROR: 'numproc' requires a non-empty option argument"
882 echo "ERROR: 'osgroup' requires a non-empty option argument"
888 __UnprocessedBuildArgs="$__UnprocessedBuildArgs $1"
895 __RunArgs="-BuildArch=$__BuildArch -BuildType=$__BuildType -BuildOS=$__BuildOS"
897 # Configure environment if we are doing a verbose build
898 if [ $__VerboseBuild == 1 ]; then
900 __RunArgs="$__RunArgs -verbose"
903 # Set default clang version
904 if [[ $__ClangMajorVersion == 0 && $__ClangMinorVersion == 0 ]]; then
905 __ClangMajorVersion=3
906 __ClangMinorVersion=9
909 if [[ "$__BuildArch" == "armel" ]]; then
910 # Armel cross build is Tizen specific and does not support Portable RID build
914 if [ $__PortableBuild == 0 ]; then
915 __RunArgs="$__RunArgs -PortableBuild=false"
918 # Set dependent variables
919 __LogsDir="$__RootBinDir/Logs"
921 # init the host distro name
924 # Set the remaining variables based upon the determined build configuration
925 __BinDir="$__RootBinDir/Product/$__BuildOS.$__BuildArch.$__BuildType"
926 __PackagesBinDir="$__BinDir/.nuget"
927 __ToolsDir="$__RootBinDir/tools"
928 __TestWorkingDir="$__RootBinDir/tests/$__BuildOS.$__BuildArch.$__BuildType"
929 export __IntermediatesDir="$__RootBinDir/obj/$__BuildOS.$__BuildArch.$__BuildType"
930 __TestIntermediatesDir="$__RootBinDir/tests/obj/$__BuildOS.$__BuildArch.$__BuildType"
931 __isMSBuildOnNETCoreSupported=0
932 __CrossComponentBinDir="$__BinDir"
933 __CrossCompIntermediatesDir="$__IntermediatesDir/crossgen"
935 __CrossArch="$__HostArch"
936 if [[ "$__HostArch" == "x64" && ("$__BuildArch" == "arm" || "$__BuildArch" == "armel") ]]; then
939 if [ $__CrossBuild == 1 ]; then
940 __CrossComponentBinDir="$__CrossComponentBinDir/$__CrossArch"
942 __CrossgenCoreLibLog="$__LogsDir/CrossgenCoreLib_$__BuildOS.$BuildArch.$__BuildType.log"
943 __CrossgenExe="$__CrossComponentBinDir/crossgen"
945 # Init if MSBuild for .NET Core is supported for this platform
946 isMSBuildOnNETCoreSupported
948 # CI_SPECIFIC - On CI machines, $HOME may not be set. In such a case, create a subfolder and set the variable to set.
949 # This is needed by CLI to function.
950 if [ -z "$HOME" ]; then
951 if [ ! -d "$__ProjectDir/temp_home" ]; then
954 export HOME=$__ProjectDir/temp_home
955 echo "HOME not defined; setting it to $HOME"
958 # Specify path to be set for CMAKE_INSTALL_PREFIX.
959 # This is where all built CoreClr libraries will copied to.
960 export __CMakeBinDir="$__BinDir"
962 # Configure environment if we are doing a cross compile.
963 if [ $__CrossBuild == 1 ]; then
964 export CROSSCOMPILE=1
965 if ! [[ -n "$ROOTFS_DIR" ]]; then
966 export ROOTFS_DIR="$__ProjectRoot/cross/rootfs/$__BuildArch"
970 # init the target distro name
973 # Make the directories necessary for build if they don't exist
979 # Restore the package containing profile counts for profile-guided optimizations
982 # Generate event logging infrastructure sources
983 generate_event_logging_sources
985 # Build the coreclr (native) components.
986 __ExtraCmakeArgs="-DCLR_CMAKE_TARGET_OS=$__BuildOS -DCLR_CMAKE_PACKAGES_DIR=$__PackagesDir -DCLR_CMAKE_PGO_INSTRUMENT=$__PgoInstrument -DCLR_CMAKE_OPTDATA_VERSION=$__PgoOptDataVersion -DCLR_CMAKE_PGO_OPTIMIZE=$__PgoOptimize"
987 build_native $__SkipCoreCLR "$__BuildArch" "$__IntermediatesDir" "$__ExtraCmakeArgs" "CoreCLR component"
989 # Build cross-architecture components
990 if [[ $__CrossBuild == 1 && $__DoCrossArchBuild == 1 ]]; then
991 build_cross_arch_component
994 # Build System.Private.CoreLib.
998 # Generate nuget packages
999 if [ $__SkipNuget != 1 ]; then
1000 generate_NugetPackages
1006 echo "Repo successfully built."
1007 echo "Product binaries are available at $__BinDir"