diff options
author | Gleb Balykov <g.balykov@samsung.com> | 2020-07-14 18:49:49 +0300 |
---|---|---|
committer | Alexander Soldatov/AI Compiler Lab /SRR/Staff Engineer/Samsung Electronics <soldatov.a@samsung.com> | 2020-07-23 16:00:54 +0300 |
commit | fe59f017c6fd449df2dab61b1d5c85c29336062a (patch) | |
tree | 3594c03407623f0dbfebb5a37bc0a18827eef8bc | |
parent | 55e8bfbbdb0381868af27a09809e6b36c73b5e84 (diff) | |
download | coreclr-fe59f017c6fd449df2dab61b1d5c85c29336062a.tar.gz coreclr-fe59f017c6fd449df2dab61b1d5c85c29336062a.tar.bz2 coreclr-fe59f017c6fd449df2dab61b1d5c85c29336062a.zip |
[Tizen] Do not access crossgen if it is not needed
-rwxr-xr-x | build-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-test.sh b/build-test.sh index 6ef1447b77..5234e2fb2a 100755 --- a/build-test.sh +++ b/build-test.sh @@ -150,7 +150,6 @@ generate_layout() build_MSBuild_projects "Tests_Overlay_Managed" "${__ProjectDir}/tests/runtest.proj" "Creating test overlay" "/t:CreateTestOverlay" chmod +x $__BinDir/corerun - chmod +x $__CrossgenExe # Make sure to copy over the pulled down packages cp -r $__BinDir/* $CORE_ROOT/ > /dev/null @@ -167,6 +166,7 @@ generate_layout() # Precompile framework assemblies with crossgen if required if [ $__DoCrossgen -ne 0 ]; then + chmod +x $__CrossgenExe precompile_coreroot_fx fi } |