aboutsummaryrefslogtreecommitdiff
path: root/build-scp.sh
diff options
context:
space:
mode:
authorThomas Abraham <thomas.abraham@arm.com>2020-10-04 00:24:30 +0530
committerVijayenthiran Subramaniam <vijayenthiran.subramaniam@arm.com>2020-10-09 15:23:49 +0530
commit2a8c6e32ed566391fa904485f8daa6d048c12c21 (patch)
tree21af6a2717f6d7e4e3c8535cd22b318ac39cbfe6 /build-scp.sh
parent0ac34a4ca9ac408d03f7512482407c837e8fb999 (diff)
build-scp: adapt to change in compiler
Update the name of the compiler binary for using the compiler from Arm developer site. This change corresponds to the compiler name as used in gcc-arm-8.3-2019.03-x86_64-arm-eabi version of the compiler. Change-Id: I93f162fb0ab318fbf049a46c26a8885102982d60 Signed-off-by: Thomas Abraham <thomas.abraham@arm.com>
Diffstat (limited to 'build-scp.sh')
-rwxr-xr-xbuild-scp.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-scp.sh b/build-scp.sh
index d69e731..fa8e401 100755
--- a/build-scp.sh
+++ b/build-scp.sh
@@ -63,7 +63,7 @@ do_build ()
local outdir=$TOP_DIR/$SCP_PATH/output
mkdir -p ${outdir}
- make PRODUCT=$item MODE=$SCP_BUILD_MODE CC=${SCP_COMPILER_PATH}/arm-none-eabi-gcc
+ make PRODUCT=$item MODE=$SCP_BUILD_MODE CC=${SCP_COMPILER_PATH}/arm-eabi-gcc
cp -r build/product/$item/* ${outdir}/
done
popd