3 # Work around Jenkins CI + msbuild problem: Jenkins sometimes creates very large environment
4 # variables, and msbuild can't handle environment blocks with such large variables. So clear
5 # out the variables that might be too large.
6 export ghprbCommentBody=
8 # resolve python-version to use
9 if [ "$PYTHON" == "" ] ; then
10 if ! PYTHON=$(command -v python2.7 || command -v python2 || command -v python)
12 echo "Unable to locate build-dependency python2.x!" 1>&2
17 # validate python-dependency
18 # useful in case of explicitly set option.
19 if ! command -v $PYTHON > /dev/null
21 echo "Unable to locate build-dependency python2.x ($PYTHON)!" 1>&2
27 echo "Usage: $0 [BuildArch] [BuildType] [-verbose] [-coverage] [-cross] [-clangx.y] [-ninja] [-configureonly] [-skipconfigure] [-skipnative] [-skipmscorlib] [-skiptests] [-stripsymbols] [-ignorewarnings] [-cmakeargs] [-bindir]"
28 echo "BuildArch can be: -x64, -x86, -arm, -armel, -arm64"
29 echo "BuildType can be: -debug, -checked, -release"
30 echo "-coverage - optional argument to enable code coverage build (currently supported only for Linux and OSX)."
31 echo "-ninja - target ninja instead of GNU make"
32 echo "-clangx.y - optional argument to build using clang version x.y."
33 echo "-cross - optional argument to signify cross compilation,"
34 echo " - will use ROOTFS_DIR environment variable if set."
35 echo "-crosscomponent - optional argument to build cross-architecture component,"
36 echo " - will use CAC_ROOTFS_DIR environment variable if set."
37 echo "-nopgooptimize - do not use profile guided optimizations."
38 echo "-pgoinstrument - generate instrumented code for profile guided optimization enabled binaries."
39 echo "-ibcinstrument - generate IBC-tuning-enabled native images when invoking crossgen."
40 echo "-configureonly - do not perform any builds; just configure the build."
41 echo "-skipconfigure - skip build configuration."
42 echo "-skipnative - do not build native components."
43 echo "-skipmscorlib - do not build mscorlib.dll."
44 echo "-skiptests - skip the tests in the 'tests' subdirectory."
45 echo "-skipnuget - skip building nuget packages."
46 echo "-skiprestoreoptdata - skip restoring optimization data used by profile-based optimizations."
47 echo "-skipcrossgen - skip native image generation"
48 echo "-verbose - optional argument to enable verbose build output."
49 echo "-skiprestore: skip restoring packages ^(default: packages are restored during build^)."
50 echo "-disableoss: Disable Open Source Signing for System.Private.CoreLib."
51 echo "-officialbuildid=^<ID^>: specify the official build ID to be used by this build."
52 echo "-Rebuild: passes /t:rebuild to the build projects."
53 echo "-stripSymbols - Optional argument to strip native symbols during the build."
54 echo "-skipgenerateversion - disable version generation even if MSBuild is supported."
55 echo "-ignorewarnings - do not treat warnings as errors"
56 echo "-cmakeargs - user-settable additional arguments passed to CMake."
57 echo "-bindir - output directory (defaults to $__ProjectRoot/bin)"
58 echo "-msbuildonunsupportedplatform - build managed binaries even if distro is not officially supported."
59 echo "-numproc - set the number of build processes."
66 if [ "$__HostOS" == "Linux" ]; then
67 if [ -e /etc/os-release ]; then
68 source /etc/os-release
69 if [[ $ID == "rhel" ]]; then
70 # remove the last version digit
71 VERSION_ID=${VERSION_ID%.*}
73 __HostDistroRid="$ID.$VERSION_ID-$__HostArch"
74 if [[ $ID == "alpine" ]]; then
75 __HostDistroRid="linux-musl-$__HostArch"
77 elif [ -e /etc/redhat-release ]; then
78 local redhatRelease=$(</etc/redhat-release)
79 if [[ $redhatRelease == "CentOS release 6."* || $redhatRelease == "Red Hat Enterprise Linux Server release 6."* ]]; then
80 __HostDistroRid="rhel.6-$__HostArch"
84 if [ "$__HostOS" == "FreeBSD" ]; then
85 __freebsd_version=`sysctl -n kern.osrelease | cut -f1 -d'.'`
86 __HostDistroRid="freebsd.$__freebsd_version-$__HostArch"
89 if [ "$__HostDistroRid" == "" ]; then
90 echo "WARNING: Can not determine runtime id for current distro."
96 if [ $__CrossBuild == 1 ]; then
97 if [ "$__BuildOS" == "Linux" ]; then
98 if [ ! -e $ROOTFS_DIR/etc/os-release ]; then
99 if [ -e $ROOTFS_DIR/android_platform ]; then
100 source $ROOTFS_DIR/android_platform
101 export __DistroRid="$RID"
103 echo "WARNING: Can not determine runtime id for current distro."
104 export __DistroRid=""
107 source $ROOTFS_DIR/etc/os-release
108 export __DistroRid="$ID.$VERSION_ID-$__BuildArch"
112 export __DistroRid="$__HostDistroRid"
115 if [ "$__BuildOS" == "OSX" ]; then
119 # Portable builds target the base RID
120 if [ $__PortableBuild == 1 ]; then
121 if [ "$__BuildOS" == "Linux" ]; then
122 export __DistroRid="linux-$__BuildArch"
123 elif [ "$__BuildOS" == "OSX" ]; then
124 export __DistroRid="osx-$__BuildArch"
125 elif [ "$__BuildOS" == "FreeBSD" ]; then
126 export __DistroRid="freebsd-$__BuildArch"
133 echo Setting up directories for build
135 mkdir -p "$__RootBinDir"
137 mkdir -p "$__LogsDir"
138 mkdir -p "$__IntermediatesDir"
140 if [ $__CrossBuild == 1 ]; then
141 mkdir -p "$__CrossComponentBinDir"
142 mkdir -p "$__CrossCompIntermediatesDir"
146 # Check the system to ensure the right prereqs are in place
150 echo "Checking prerequisites..."
152 # Check presence of CMake on the path
153 hash cmake 2>/dev/null || { echo >&2 "Please install cmake before running this script"; exit 1; }
156 # Minimum required version of clang is version 4.0 for arm/armel cross build
157 if [[ $__CrossBuild == 1 && ("$__BuildArch" == "arm" || "$__BuildArch" == "armel") ]]; then
158 if ! [[ "$__ClangMajorVersion" -ge "4" ]]; then
159 echo "Please install clang4.0 or latest for arm/armel cross build"; exit 1;
164 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; }
170 # we only need optdata on a Release build
171 if [[ "$__BuildType" != "Release" ]]; then __SkipRestoreOptData=1; fi
173 if [[ ( $__SkipRestoreOptData == 0 ) && ( $__isMSBuildOnNETCoreSupported == 1 ) ]]; then
174 echo "Restoring the OptimizationData package"
175 "$__ProjectRoot/run.sh" build -optdata $__RunArgs $__UnprocessedBuildArgs
177 echo "Failed to restore the optimization data package."
182 if [ $__isMSBuildOnNETCoreSupported == 1 ]; then
183 # Parse the optdata package versions out of msbuild so that we can pass them on to CMake
184 local DotNetCli="$__ProjectRoot/Tools/dotnetcli/dotnet"
185 if [ ! -f $DotNetCli ]; then
186 source "$__ProjectRoot/init-tools.sh"
188 echo "Failed to restore buildtools."
192 local OptDataProjectFilePath="$__ProjectRoot/src/.nuget/optdata/optdata.csproj"
193 __PgoOptDataVersion=$(DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 $DotNetCli msbuild $OptDataProjectFilePath /t:DumpPgoDataPackageVersion /nologo | sed 's/^\s*//')
194 __IbcOptDataVersion=$(DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 $DotNetCli msbuild $OptDataProjectFilePath /t:DumpIbcDataPackageVersion /nologo | sed 's/^\s*//')
198 generate_event_logging_sources()
201 __ConsumingBuildSystem=$2
203 __OutputIncDir="$__OutputDir/src/inc"
204 __OutputEventingDir="$__OutputDir/eventing"
205 __OutputEventProviderDir="$__OutputEventingDir/eventprovider"
207 echo "Laying out dynamically generated files consumed by $__ConsumingBuildSystem"
208 echo "Laying out dynamically generated Event test files, etmdummy stub functions, and external linkages"
210 __PythonWarningFlags="-Wall"
211 if [[ $__IgnoreWarnings == 0 ]]; then
212 __PythonWarningFlags="$__PythonWarningFlags -Werror"
215 $PYTHON -B $__PythonWarningFlags "$__ProjectRoot/src/scripts/genEventing.py" --inc $__OutputIncDir --dummy $__OutputIncDir/etmdummy.h --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --testdir "$__OutputEventProviderDir/tests"
216 if [[ $? != 0 ]]; then
220 echo "Laying out dynamically generated EventPipe Implementation"
221 $PYTHON -B $__PythonWarningFlags "$__ProjectRoot/src/scripts/genEventPipe.py" --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --intermediate "$__OutputEventingDir/eventpipe"
223 # determine the logging system
226 echo "Laying out dynamically generated Event Logging Implementation of Lttng"
227 $PYTHON -B $__PythonWarningFlags "$__ProjectRoot/src/scripts/genLttngProvider.py" --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --intermediate "$__OutputEventProviderDir"
228 if [[ $? != 0 ]]; then
233 echo "Laying out dummy event logging provider"
234 $PYTHON -B $__PythonWarningFlags "$__ProjectRoot/src/scripts/genDummyProvider.py" --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --intermediate "$__OutputEventProviderDir"
235 if [[ $? != 0 ]]; then
242 generate_event_logging()
244 # Event Logging Infrastructure
245 if [[ $__SkipCoreCLR == 0 || $__ConfigureOnly == 1 ]]; then
246 generate_event_logging_sources "$__IntermediatesDir" "the native build system"
249 if [[ $__CrossBuild == 1 && $__DoCrossArchBuild == 1 ]]; then
250 generate_event_logging_sources "$__CrossCompIntermediatesDir" "the crossarch build system"
258 intermediatesForBuild="$3"
259 extraCmakeArguments="$4"
262 if [ $skipCondition == 1 ]; then
263 echo "Skipping $message build."
267 # All set to commence the build
268 echo "Commencing build of $message for $__BuildOS.$__BuildArch.$__BuildType in $intermediatesForBuild"
273 if [ $__UseNinja == 1 ]; then
275 buildFile="build.ninja"
276 if ! buildTool=$(command -v ninja || command -v ninja-build); then
277 echo "Unable to locate ninja!" 1>&2
282 if [ $__SkipConfigure == 0 ]; then
283 # if msbuild is not supported, then set __SkipGenerateVersion to 1
284 if [ $__isMSBuildOnNETCoreSupported == 0 ]; then __SkipGenerateVersion=1; fi
285 # Drop version.cpp file
286 __versionSourceFile="$intermediatesForBuild/version.cpp"
287 if [ $__SkipGenerateVersion == 0 ]; then
289 "$__ProjectRoot/run.sh" build -Project=$__ProjectDir/build.proj -generateHeaderUnix -NativeVersionSourceFile=$__versionSourceFile -MsBuildEventLogging="/l:BinClashLogger,Tools/Microsoft.DotNet.Build.Tasks.dll;LogFile=binclash.log" $__RunArgs $__UnprocessedBuildArgs
291 # Generate the dummy version.cpp, but only if it didn't exist to make sure we don't trigger unnecessary rebuild
292 __versionSourceLine="static char sccsid[] __attribute__((used)) = \"@(#)No version information produced\";"
293 if [ -e $__versionSourceFile ]; then
294 read existingVersionSourceLine < $__versionSourceFile
296 if [ "$__versionSourceLine" != "$existingVersionSourceLine" ]; then
297 echo $__versionSourceLine > $__versionSourceFile
302 pushd "$intermediatesForBuild"
303 # Regenerate the CMake solution
304 echo "Invoking \"$__ProjectRoot/src/pal/tools/gen-buildsys-clang.sh\" \"$__ProjectRoot\" $__ClangMajorVersion $__ClangMinorVersion $platformArch $__BuildType $__CodeCoverage $__IncludeTests $generator $extraCmakeArguments $__cmakeargs"
305 "$__ProjectRoot/src/pal/tools/gen-buildsys-clang.sh" "$__ProjectRoot" $__ClangMajorVersion $__ClangMinorVersion $platformArch $__BuildType $__CodeCoverage $__IncludeTests $generator "$extraCmakeArguments" "$__cmakeargs"
309 if [ ! -f "$intermediatesForBuild/$buildFile" ]; then
310 echo "Failed to generate $message build project!"
315 if [ $__ConfigureOnly == 1 ]; then
316 echo "Finish configuration & skipping $message build."
320 # Check that the makefiles were created.
321 pushd "$intermediatesForBuild"
323 echo "Executing $buildTool install -j $__NumProc"
325 $buildTool install -j $__NumProc
327 echo "Failed to build $message."
334 build_cross_arch_component()
336 __SkipCrossArchBuild=1
338 # check supported cross-architecture components host(__HostArch)/target(__BuildArch) pair
339 if [[ ("$__BuildArch" == "arm" || "$__BuildArch" == "armel") && "$__CrossArch" == "x86" ]]; then
340 export CROSSCOMPILE=0
341 __SkipCrossArchBuild=0
343 # building x64-host/arm-target cross-architecture component need to use cross toolchain of x86
344 if [ "$__HostArch" == "x64" ]; then
345 export CROSSCOMPILE=1
347 elif [[ ("$__BuildArch" == "arm64") && "$__CrossArch" == "x64" ]]; then
348 export CROSSCOMPILE=0
349 __SkipCrossArchBuild=0
355 export __CMakeBinDir="$__CrossComponentBinDir"
356 export CROSSCOMPONENT=1
359 if [ $CROSSCOMPILE == 1 ]; then
360 TARGET_ROOTFS="$ROOTFS_DIR"
361 if [ -n "$CAC_ROOTFS_DIR" ]; then
362 export ROOTFS_DIR="$CAC_ROOTFS_DIR"
364 export ROOTFS_DIR="$__ProjectRoot/cross/rootfs/$__CrossArch"
368 __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"
369 build_native $__SkipCrossArchBuild "$__CrossArch" "$__CrossCompIntermediatesDir" "$__ExtraCmakeArgs" "cross-architecture component"
371 # restore ROOTFS_DIR, CROSSCOMPONENT, and CROSSCOMPILE
372 if [ -n "$TARGET_ROOTFS" ]; then
373 export ROOTFS_DIR="$TARGET_ROOTFS"
375 export CROSSCOMPONENT=
376 export CROSSCOMPILE=1
379 isMSBuildOnNETCoreSupported()
381 __isMSBuildOnNETCoreSupported=$__msbuildonunsupportedplatform
383 if [ $__isMSBuildOnNETCoreSupported == 1 ]; then
387 if [ "$__HostArch" == "x64" ]; then
388 if [ "$__HostOS" == "Linux" ]; then
389 __isMSBuildOnNETCoreSupported=1
390 # note: the RIDs below can use globbing patterns
391 UNSUPPORTED_RIDS=("debian.9-x64" "ubuntu.17.04-x64")
392 for UNSUPPORTED_RID in "${UNSUPPORTED_RIDS[@]}"
394 if [[ $__HostDistroRid == $UNSUPPORTED_RID ]]; then
395 __isMSBuildOnNETCoreSupported=0
399 elif [ "$__HostOS" == "OSX" ]; then
400 __isMSBuildOnNETCoreSupported=1
408 local __CrossGenExec=$1
410 echo "Generating native image for System.Private.CoreLib.dll"
411 echo "$__CrossGenExec /Platform_Assemblies_Paths $__BinDir/IL $__IbcTuning /out $__BinDir/System.Private.CoreLib.dll $__BinDir/IL/System.Private.CoreLib.dll"
412 $__CrossGenExec /Platform_Assemblies_Paths $__BinDir/IL $__IbcTuning /out $__BinDir/System.Private.CoreLib.dll $__BinDir/IL/System.Private.CoreLib.dll
413 if [ $? -ne 0 ]; then
414 echo "Failed to generate native image for System.Private.CoreLib."
418 if [ "$__BuildOS" == "Linux" ]; then
419 echo "Generating symbol file for System.Private.CoreLib.dll"
420 echo "$__CrossGenExec /Platform_Assemblies_Paths $__BinDir /CreatePerfMap $__BinDir $__BinDir/System.Private.CoreLib.dll"
421 $__CrossGenExec /Platform_Assemblies_Paths $__BinDir /CreatePerfMap $__BinDir $__BinDir/System.Private.CoreLib.dll
422 if [ $? -ne 0 ]; then
423 echo "Failed to generate symbol file for System.Private.CoreLib."
431 if [ $__isMSBuildOnNETCoreSupported == 0 ]; then
432 echo "System.Private.CoreLib.dll build unsupported."
436 if [ $__SkipMSCorLib == 1 ]; then
437 echo "Skipping building System.Private.CoreLib."
441 echo "Commencing build of managed components for $__BuildOS.$__BuildArch.$__BuildType"
445 if [[ "$__IbcTuning" -eq "" ]]; then
446 __ExtraBuildArgs="$__ExtraBuildArgs -OptimizationDataDir=\"$__PackagesDir/optimization.$__BuildOS-$__BuildArch.IBC.CoreCLR/$__IbcOptDataVersion/data/\""
447 __ExtraBuildArgs="$__ExtraBuildArgs -EnableProfileGuidedOptimization=true"
449 $__ProjectRoot/run.sh build -Project=$__ProjectDir/build.proj -MsBuildEventLogging="/l:BinClashLogger,Tools/Microsoft.DotNet.Build.Tasks.dll;LogFile=binclash.log" -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
451 if [ $? -ne 0 ]; then
452 echo "Failed to build managed components."
456 if [ $__SkipCrossgen == 1 ]; then
457 echo "Skipping generating native image"
461 # The cross build generates a crossgen with the target architecture.
462 if [ $__CrossBuild == 0 ]; then
463 if [ $__SkipCoreCLR == 1 ]; then
467 # The architecture of host pc must be same architecture with target.
468 if [[ ( "$__HostArch" == "$__BuildArch" ) ]]; then
469 build_CoreLib_ni "$__BinDir/crossgen"
470 elif [[ ( "$__HostArch" == "x64" ) && ( "$__BuildArch" == "x86" ) ]]; then
471 build_CoreLib_ni "$__BinDir/crossgen"
472 elif [[ ( "$__HostArch" == "arm64" ) && ( "$__BuildArch" == "arm" ) ]]; then
473 build_CoreLib_ni "$__BinDir/crossgen"
477 elif [ $__DoCrossArchBuild == 1 ]; then
478 if [[ ( "$__CrossArch" == "x86" ) && ( "$__BuildArch" == "arm" ) ]]; then
479 build_CoreLib_ni "$__CrossComponentBinDir/crossgen"
480 elif [[ ( "$__HostArch" == "x64" ) && ( "$__BuildArch" == "arm64" ) ]]; then
481 build_CoreLib_ni "$__CrossComponentBinDir/crossgen"
486 generate_NugetPackages()
488 # We can only generate nuget package if we also support building mscorlib as part of this build.
489 if [ $__isMSBuildOnNETCoreSupported == 0 ]; then
490 echo "Nuget package generation unsupported."
494 # Since we can build mscorlib for this OS, did we build the native components as well?
495 if [ $__SkipCoreCLR == 1 ]; then
496 echo "Unable to generate nuget packages since native components were not built."
500 echo "Generating nuget packages for "$__BuildOS
501 echo "DistroRid is "$__DistroRid
502 echo "ROOTFS_DIR is "$ROOTFS_DIR
504 $__ProjectRoot/run.sh build -Project=$__SourceDir/.nuget/packages.builds -MsBuildEventLogging="/l:BinClashLogger,Tools/Microsoft.DotNet.Build.Tasks.dll;LogFile=binclash.log" -MsBuildLog="/flp:Verbosity=normal;LogFile=$__LogsDir/Nuget_$__BuildOS__$__BuildArch__$__BuildType.log" -BuildTarget -__IntermediatesDir=$__IntermediatesDir -__RootBinDir=$__RootBinDir -BuildNugetPackage=false -UseSharedCompilation=false -__DoCrossArchBuild=$__DoCrossArchBuild $__RunArgs $__UnprocessedBuildArgs
506 if [ $? -ne 0 ]; then
507 echo "Failed to generate Nuget packages."
512 echo "Commencing CoreCLR Repo build"
514 # Argument types supported by this script:
516 # Build architecture - valid values are: x64, ARM.
517 # Build Type - valid values are: Debug, Checked, Release
519 # Set the default arguments for build
521 # Obtain the location of the bash script to figure out where the root of the repo is.
522 __ProjectRoot="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
524 # Use uname to determine what the CPU is.
526 # Some Linux platforms report unknown for platform, but the arch for machine.
527 if [ "$CPUName" == "unknown" ]; then
533 echo "Unsupported CPU $CPUName detected, build might not succeed!"
544 echo "Unsupported CPU $CPUName detected, build might not succeed!"
559 echo "Unknown CPU $CPUName detected, configuring as if for x64"
565 # Use uname to determine what the OS is.
599 echo "Unsupported OS $OSName detected, configuring as if for Linux"
607 __IncludeTests=Include_Tests
610 # Set the various build properties here so that CMake and MSBuild can pick them up
611 __ProjectDir="$__ProjectRoot"
612 __SourceDir="$__ProjectDir/src"
613 __PackagesDir="${DotNetRestorePackagesPath:-${__ProjectDir}/packages}"
614 __RootBinDir="$__ProjectDir/bin"
615 __UnprocessedBuildArgs=
629 __SkipRestoreOptData=0
632 __ClangMajorVersion=0
633 __ClangMinorVersion=0
634 __NuGetPath="$__PackagesDir/NuGet.exe"
638 __SkipGenerateVersion=0
641 __msbuildonunsupportedplatform=0
642 __PgoOptDataVersion=""
643 __IbcOptDataVersion=""
645 # Get the number of processors available to the scheduler
646 # Other techniques such as `nproc` only get the number of
647 # processors available to a single process.
648 if [ `uname` = "FreeBSD" ]; then
649 __NumProc=`sysctl hw.ncpu | awk '{ print $2+1 }'`
650 elif [ `uname` = "NetBSD" ]; then
651 __NumProc=$(($(getconf NPROCESSORS_ONLN)+1))
652 elif [ `uname` = "Darwin" ]; then
653 __NumProc=$(($(getconf _NPROCESSORS_ONLN)+1))
655 __NumProc=$(nproc --all)
659 if [ $# -le 0 ]; then
663 lowerI="$(echo $1 | awk '{print tolower($0)}')"
703 __CodeCoverage=Coverage
710 -portablebuild=false)
718 stripsymbols|-stripsymbols)
719 __cmakeargs="$__cmakeargs -DSTRIP_SYMBOLS=true"
723 __ClangMajorVersion=3
724 __ClangMinorVersion=5
728 __ClangMajorVersion=3
729 __ClangMinorVersion=6
733 __ClangMajorVersion=3
734 __ClangMinorVersion=7
738 __ClangMajorVersion=3
739 __ClangMinorVersion=8
743 __ClangMajorVersion=3
744 __ClangMinorVersion=9
748 __ClangMajorVersion=4
749 __ClangMinorVersion=0
753 __ClangMajorVersion=5
754 __ClangMinorVersion=0
758 __ClangMajorVersion=6
759 __ClangMinorVersion=0
766 pgoinstrument|-pgoinstrument)
770 nopgooptimize|-nopgooptimize)
772 __SkipRestoreOptData=1
775 ibcinstrument|-ibcinstrument)
776 __IbcTuning="/Tuning"
779 configureonly|-configureonly)
785 skipconfigure|-skipconfigure)
789 skipnative|-skipnative)
790 # Use "skipnative" to use the same option name as build.cmd.
794 skipcoreclr|-skipcoreclr)
795 # Accept "skipcoreclr" for backwards-compatibility.
799 crosscomponent|-crosscomponent)
803 skipmscorlib|-skipmscorlib)
807 skipgenerateversion|-skipgenerateversion)
808 __SkipGenerateVersion=1
811 skiprestoreoptdata|-skiprestoreoptdata)
812 __SkipRestoreOptData=1
815 skipcrossgen|-skipcrossgen)
819 includetests|-includetests)
822 skiptests|-skiptests)
826 skipnuget|-skipnuget)
830 ignorewarnings|-ignorewarnings)
832 __cmakeargs="$__cmakeargs -DCLR_CMAKE_WARNINGS_ARE_ERRORS=OFF"
835 cmakeargs|-cmakeargs)
837 __cmakeargs="$__cmakeargs $2"
840 echo "ERROR: 'cmakeargs' requires a non-empty option argument"
848 if [ ! -d $__RootBinDir ]; then
851 __RootBinParent=$(dirname $__RootBinDir)
852 __RootBinName=${__RootBinDir##*/}
853 __RootBinDir="$(cd $__RootBinParent &>/dev/null && printf %s/%s $PWD $__RootBinName)"
856 echo "ERROR: 'bindir' requires a non-empty option argument"
860 msbuildonunsupportedplatform|-msbuildonunsupportedplatform)
861 __msbuildonunsupportedplatform=1
868 echo "ERROR: 'numproc' requires a non-empty option argument"
877 echo "ERROR: 'osgroup' requires a non-empty option argument"
883 __UnprocessedBuildArgs="$__UnprocessedBuildArgs $1"
890 __RunArgs="-BuildArch=$__BuildArch -BuildType=$__BuildType -BuildOS=$__BuildOS"
892 # Configure environment if we are doing a verbose build
893 if [ $__VerboseBuild == 1 ]; then
895 __RunArgs="$__RunArgs -verbose"
898 # Set default clang version
899 if [[ $__ClangMajorVersion == 0 && $__ClangMinorVersion == 0 ]]; then
900 if [[ "$__BuildArch" == "arm" || "$__BuildArch" == "armel" ]]; then
901 __ClangMajorVersion=5
902 __ClangMinorVersion=0
904 __ClangMajorVersion=3
905 __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
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"