3 # resolve python-version to use
4 if [ "$PYTHON" == "" ] ; then
5 if which python >/dev/null 2>&1
8 elif which python2 >/dev/null 2>&1
11 elif which python2.7 >/dev/null 2>&1
15 echo "Unable to locate build-dependency python2.x!" 1>&2
20 # validate python-dependency
21 # useful in case of explicitly set option.
22 if ! which $PYTHON > /dev/null 2>&1
24 echo "Unable to locate build-dependency python2.x ($PYTHON)!" 1>&2
30 echo "Usage: $0 [BuildArch] [BuildType] [verbose] [coverage] [cross] [clangx.y] [ninja] [configureonly] [skipconfigure] [skipnative] [skipmscorlib] [skiptests] [cmakeargs] [bindir]"
31 echo "BuildArch can be: x64, x86, arm, arm-softfp, arm64"
32 echo "BuildType can be: debug, checked, release"
33 echo "coverage - optional argument to enable code coverage build (currently supported only for Linux and OSX)."
34 echo "ninja - target ninja instead of GNU make"
35 echo "clangx.y - optional argument to build using clang version x.y."
36 echo "cross - optional argument to signify cross compilation,"
37 echo " - will use ROOTFS_DIR environment variable if set."
38 echo "pgoinstrument - generate instrumented code for profile guided optimization enabled binaries."
39 echo "configureonly - do not perform any builds; just configure the build."
40 echo "skipconfigure - skip build configuration."
41 echo "skipnative - do not build native components."
42 echo "skipmscorlib - do not build mscorlib.dll."
43 echo "skiptests - skip the tests in the 'tests' subdirectory."
44 echo "skipnuget - skip building nuget packages."
45 echo "verbose - optional argument to enable verbose build output."
46 echo "-skiprestore: skip restoring packages ^(default: packages are restored during build^)."
47 echo "-disableoss: Disable Open Source Signing for System.Private.CoreLib."
48 echo "-sequential: force a non-parallel build ^(default is to build in parallel"
49 echo " using all processors^)."
50 echo "-officialbuildid=^<ID^>: specify the official build ID to be used by this build."
51 echo "-Rebuild: passes /t:rebuild to the build projects."
52 echo "skipgenerateversion - disable version generation even if MSBuild is supported."
53 echo "cmakeargs - user-settable additional arguments passed to CMake."
54 echo "bindir - output directory (defaults to $__ProjectRoot/bin)"
61 if [ "$__BuildOS" == "Linux" ]; then
62 if [ ! -e /etc/os-release ]; then
63 echo "WARNING: Can not determine runtime id for current distro."
66 source /etc/os-release
67 export __DistroRid="$ID.$VERSION_ID-$__HostArch"
74 echo Setting up directories for build
76 mkdir -p "$__RootBinDir"
79 mkdir -p "$__IntermediatesDir"
82 # Check the system to ensure the right prereqs are in place
86 echo "Checking prerequisites..."
88 # Check presence of CMake on the path
89 hash cmake 2>/dev/null || { echo >&2 "Please install cmake before running this script"; exit 1; }
92 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; }
99 if [ $__SkipCoreCLR == 1 ]; then
100 echo "Skipping CoreCLR build."
104 # Event Logging Infrastructure
105 __GeneratedIntermediate="$__IntermediatesDir/Generated"
106 __GeneratedIntermediateEventProvider="$__GeneratedIntermediate/eventprovider_new"
107 if [[ -d "$__GeneratedIntermediateEventProvider" ]]; then
108 rm -rf "$__GeneratedIntermediateEventProvider"
111 if [[ ! -d "$__GeneratedIntermediate/eventprovider" ]]; then
112 mkdir -p "$__GeneratedIntermediate/eventprovider"
115 mkdir -p "$__GeneratedIntermediateEventProvider"
116 if [[ $__SkipCoreCLR == 0 || $__ConfigureOnly == 1 ]]; then
117 echo "Laying out dynamically generated files consumed by the build system "
118 echo "Laying out dynamically generated Event Logging Test files"
119 $PYTHON -B -Wall -Werror "$__ProjectRoot/src/scripts/genXplatEventing.py" --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --exc "$__ProjectRoot/src/vm/ClrEtwAllMeta.lst" --testdir "$__GeneratedIntermediateEventProvider/tests"
121 if [[ $? != 0 ]]; then
125 #determine the logging system
128 echo "Laying out dynamically generated Event Logging Implementation of Lttng"
129 $PYTHON -B -Wall -Werror "$__ProjectRoot/src/scripts/genXplatLttng.py" --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --intermediate "$__GeneratedIntermediateEventProvider"
130 if [[ $? != 0 ]]; then
139 echo "Cleaning the temp folder of dynamically generated Event Logging files"
140 $PYTHON -B -Wall -Werror -c "import sys;sys.path.insert(0,\"$__ProjectRoot/src/scripts\"); from Utilities import *;UpdateDirectory(\"$__GeneratedIntermediate/eventprovider\",\"$__GeneratedIntermediateEventProvider\")"
141 if [[ $? != 0 ]]; then
145 rm -rf "$__GeneratedIntermediateEventProvider"
147 # All set to commence the build
149 echo "Commencing build of native components for $__BuildOS.$__BuildArch.$__BuildType in $__IntermediatesDir"
154 if [ $__UseNinja == 1 ]; then
156 buildFile="build.ninja"
157 if which ninja >/dev/null 2>&1; then
159 elif which ninja-build >/dev/null 2>&1; then
160 buildTool="ninja-build"
162 echo "Unable to locate ninja!" 1>&2
167 if [ $__SkipConfigure == 0 ]; then
168 # if msbuild is not supported, then set __SkipGenerateVersion to 1
169 if [ $__isMSBuildOnNETCoreSupported == 0 ]; then __SkipGenerateVersion=1; fi
170 # Drop version.c file
171 __versionSourceFile=$__IntermediatesDir/version.cpp
172 if [ $__SkipGenerateVersion == 0 ]; then
173 "$__ProjectRoot/run.sh" build -Project=$__ProjectDir/build.proj -generateHeaderUnix -NativeVersionSourceFile=$__versionSourceFile $__RunArgs $__UnprocessedBuildArgs
175 __versionSourceLine="static char sccsid[] __attribute__((used)) = \"@(#)No version information produced\";"
176 echo $__versionSourceLine > $__versionSourceFile
179 pushd "$__IntermediatesDir"
180 # Regenerate the CMake solution
181 __ExtraCmakeArgs="-DCLR_CMAKE_TARGET_OS=$__BuildOS -DCLR_CMAKE_PACKAGES_DIR=$__PackagesDir -DCLR_CMAKE_PGO_INSTRUMENT=$__PgoInstrument"
182 echo "Invoking \"$__ProjectRoot/src/pal/tools/gen-buildsys-clang.sh\" \"$__ProjectRoot\" $__ClangMajorVersion $__ClangMinorVersion $__BuildArch $__BuildType $__CodeCoverage $__IncludeTests $generator $__ExtraCmakeArgs $__cmakeargs"
183 "$__ProjectRoot/src/pal/tools/gen-buildsys-clang.sh" "$__ProjectRoot" $__ClangMajorVersion $__ClangMinorVersion $__BuildArch $__BuildType $__CodeCoverage $__IncludeTests $generator "$__ExtraCmakeArgs" "$__cmakeargs"
187 # Check that the makefiles were created.
188 pushd "$__IntermediatesDir"
190 if [ ! -f "$__IntermediatesDir/$buildFile" ]; then
191 echo "Failed to generate native component build project!"
195 # Get the number of processors available to the scheduler
196 # Other techniques such as `nproc` only get the number of
197 # processors available to a single process.
198 if [ `uname` = "FreeBSD" ]; then
199 NumProc=`sysctl hw.ncpu | awk '{ print $2+1 }'`
200 elif [ `uname` = "NetBSD" ]; then
201 NumProc=$(($(getconf NPROCESSORS_ONLN)+1))
203 NumProc=$(($(getconf _NPROCESSORS_ONLN)+1))
208 if [ $__ConfigureOnly == 1 ]; then
209 echo "Skipping CoreCLR build."
213 echo "Executing $buildTool install -j $NumProc"
215 $buildTool install -j $NumProc
217 echo "Failed to build coreclr components."
223 isMSBuildOnNETCoreSupported()
225 # This needs to be updated alongwith corresponding changes to netci.groovy.
226 __isMSBuildOnNETCoreSupported=0
228 if [ "$__HostArch" == "x64" ]; then
229 if [ "$__HostOS" == "Linux" ]; then
230 case "$__DistroRid" in
232 __isMSBuildOnNETCoreSupported=1
235 __isMSBuildOnNETCoreSupported=1
238 __isMSBuildOnNETCoreSupported=1
241 __isMSBuildOnNETCoreSupported=1
244 __isMSBuildOnNETCoreSupported=1
247 __isMSBuildOnNETCoreSupported=1
250 __isMSBuildOnNETCoreSupported=1
253 __isMSBuildOnNETCoreSupported=1
256 __isMSBuildOnNETCoreSupported=1
259 __isMSBuildOnNETCoreSupported=1
263 elif [ "$__HostOS" == "OSX" ]; then
264 __isMSBuildOnNETCoreSupported=1
271 if [ $__SkipCoreCLR == 0 -a -e $__BinDir/crossgen ]; then
272 echo "Generating native image for System.Private.CoreLib."
273 $__BinDir/crossgen $__BinDir/System.Private.CoreLib.dll
274 if [ $? -ne 0 ]; then
275 echo "Failed to generate native image for System.Private.CoreLib."
279 echo "Generating native image for MScorlib Facade."
280 $__BinDir/crossgen $__BinDir/mscorlib.dll
281 if [ $? -ne 0 ]; then
282 echo "Failed to generate native image for mscorlib facade."
286 if [ "$__BuildOS" == "Linux" ]; then
287 echo "Generating symbol file for System.Private.CoreLib."
288 $__BinDir/crossgen /CreatePerfMap $__BinDir $__BinDir/System.Private.CoreLib.ni.dll
289 if [ $? -ne 0 ]; then
290 echo "Failed to generate symbol file for System.Private.CoreLib."
300 if [ $__isMSBuildOnNETCoreSupported == 0 ]; then
301 echo "System.Private.CoreLib.dll build unsupported."
305 if [ $__SkipMSCorLib == 1 ]; then
306 echo "Skipping building System.Private.CoreLib."
310 echo "Commencing build of managed components for $__BuildOS.$__BuildArch.$__BuildType"
313 $__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 $__UnprocessedBuildArgs
315 if [ $? -ne 0 ]; then
316 echo "Failed to build managed components."
320 # The cross build generates a crossgen with the target architecture.
321 if [ $__CrossBuild != 1 ]; then
322 # The architecture of host pc must be same architecture with target.
323 if [[ ( "$__HostArch" == "$__BuildArch" ) ]]; then
325 elif [[ ( "$__HostArch" == "x64" ) && ( "$__BuildArch" == "x86" ) ]]; then
327 elif [[ ( "$__HostArch" == "arm64" ) && ( "$__BuildArch" == "arm" ) ]]; then
335 generate_NugetPackages()
337 # We can only generate nuget package if we also support building mscorlib as part of this build.
338 if [ $__isMSBuildOnNETCoreSupported == 0 ]; then
339 echo "Nuget package generation unsupported."
343 # Since we can build mscorlib for this OS, did we build the native components as well?
344 if [ $__SkipCoreCLR == 1 ]; then
345 echo "Unable to generate nuget packages since native components were not built."
349 echo "Generating nuget packages for "$__BuildOS
352 $__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
354 if [ $? -ne 0 ]; then
355 echo "Failed to generate Nuget packages."
360 echo "Commencing CoreCLR Repo build"
362 # Argument types supported by this script:
364 # Build architecture - valid values are: x64, ARM.
365 # Build Type - valid values are: Debug, Checked, Release
367 # Set the default arguments for build
369 # Obtain the location of the bash script to figure out where the root of the repo is.
370 __ProjectRoot="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
372 # Use uname to determine what the CPU is.
374 # Some Linux platforms report unknown for platform, but the arch for machine.
375 if [ "$CPUName" == "unknown" ]; then
381 echo "Unsupported CPU $CPUName detected, build might not succeed!"
392 echo "Unsupported CPU $CPUName detected, build might not succeed!"
398 echo "Unsupported CPU $CPUName detected, build might not succeed!"
404 echo "Unknown CPU $CPUName detected, configuring as if for x64"
410 # Use uname to determine what the OS is.
444 echo "Unsupported OS $OSName detected, configuring as if for Linux"
452 __IncludeTests=Include_Tests
454 # Set the various build properties here so that CMake and MSBuild can pick them up
455 __ProjectDir="$__ProjectRoot"
456 __SourceDir="$__ProjectDir/src"
457 __PackagesDir="$__ProjectDir/packages"
458 __RootBinDir="$__ProjectDir/bin"
459 __UnprocessedBuildArgs=
472 __ClangMajorVersion=0
473 __ClangMinorVersion=0
474 __NuGetPath="$__PackagesDir/NuGet.exe"
477 __SkipGenerateVersion=0
480 if [ $# -le 0 ]; then
484 lowerI="$(echo $1 | awk '{print tolower($0)}')"
504 __BuildArch=arm-softfp
524 __CodeCoverage=Coverage
536 __ClangMajorVersion=3
537 __ClangMinorVersion=5
541 __ClangMajorVersion=3
542 __ClangMinorVersion=6
546 __ClangMajorVersion=3
547 __ClangMinorVersion=7
551 __ClangMajorVersion=3
552 __ClangMinorVersion=8
556 __ClangMajorVersion=3
557 __ClangMinorVersion=9
580 # Use "skipnative" to use the same option name as build.cmd.
585 # Accept "skipcoreclr" for backwards-compatibility.
594 __SkipGenerateVersion=1
613 echo "ERROR: 'cmakeargs' requires a non-empty option argument"
621 if [ ! -d $__RootBinDir ]; then
624 __RootBinParent=$(dirname $__RootBinDir)
625 __RootBinName=${__RootBinDir##*/}
626 __RootBinDir="$(cd $__RootBinParent &>/dev/null && printf %s/%s $PWD $__RootBinName)"
629 echo "ERROR: 'bindir' requires a non-empty option argument"
635 __UnprocessedBuildArgs="$__UnprocessedBuildArgs $1"
642 __RunArgs="-BuildArch=$__BuildArch -BuildType=$__BuildType -BuildOS=$__BuildOS"
644 # Configure environment if we are doing a verbose build
645 if [ $__VerboseBuild == 1 ]; then
647 __RunArgs="$__RunArgs -verbose"
650 # Set default clang version
651 if [[ $__ClangMajorVersion == 0 && $__ClangMinorVersion == 0 ]]; then
652 if [ $__CrossBuild == 1 ]; then
653 __ClangMajorVersion=3
654 __ClangMinorVersion=6
656 __ClangMajorVersion=3
657 __ClangMinorVersion=5
661 # Set dependent variables
662 __LogsDir="$__RootBinDir/Logs"
664 # init the distro name
667 # Set the remaining variables based upon the determined build configuration
668 __BinDir="$__RootBinDir/Product/$__BuildOS.$__BuildArch.$__BuildType"
669 __PackagesBinDir="$__BinDir/.nuget"
670 __ToolsDir="$__RootBinDir/tools"
671 __TestWorkingDir="$__RootBinDir/tests/$__BuildOS.$__BuildArch.$__BuildType"
672 export __IntermediatesDir="$__RootBinDir/obj/$__BuildOS.$__BuildArch.$__BuildType"
673 __TestIntermediatesDir="$__RootBinDir/tests/obj/$__BuildOS.$__BuildArch.$__BuildType"
674 __isMSBuildOnNETCoreSupported=0
676 # Init if MSBuild for .NET Core is supported for this platform
677 isMSBuildOnNETCoreSupported
679 # CI_SPECIFIC - On CI machines, $HOME may not be set. In such a case, create a subfolder and set the variable to set.
680 # This is needed by CLI to function.
681 if [ -z "$HOME" ]; then
682 if [ ! -d "$__ProjectDir/temp_home" ]; then
685 export HOME=$__ProjectDir/temp_home
686 echo "HOME not defined; setting it to $HOME"
689 # Specify path to be set for CMAKE_INSTALL_PREFIX.
690 # This is where all built CoreClr libraries will copied to.
691 export __CMakeBinDir="$__BinDir"
693 # Configure environment if we are doing a cross compile.
694 if [ $__CrossBuild == 1 ]; then
695 export CROSSCOMPILE=1
696 if ! [[ -n "$ROOTFS_DIR" ]]; then
697 export ROOTFS_DIR="$__ProjectRoot/cross/rootfs/$__BuildArch"
701 # Make the directories necessary for build if they don't exist
709 # Build the coreclr (native) components.
713 # Build System.Private.CoreLib.
717 # Generate nuget packages
718 if [ $__SkipNuget != 1 ]; then
719 generate_NugetPackages
725 echo "Repo successfully built."
726 echo "Product binaries are available at $__BinDir"