aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Abraham <thomas.abraham@arm.com>2018-10-19 20:10:25 +0530
committerArvind Chauhan <arvind.chauhan@arm.com>2018-10-19 16:12:44 +0100
commitc066ba20f97cd371114b1ed3d555382d994d51fe (patch)
tree484b6b0ca36823294eaa3f8130292adf61faa14c
parentb511370123dd9239229ec9d4a076ae0f9aeaecb4 (diff)
build-scp: adapt to changes in upstream scp build commandarmlt-20181030-001
The build command for upstream scp now requires a CC command line parameter that points to the absolute path of the compiler to be used for building scp. So adapt the scp build script to these changes in build command. Change-Id: I48442342739f57f6dcceb5e1d627e04421038d70 Signed-off-by: Thomas Abraham <thomas.abraham@arm.com>
-rwxr-xr-xbuild-scp.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-scp.sh b/build-scp.sh
index 76f0a2a..979e720 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}
- CROSS_COMPILE=${SCP_COMPILER_PATH}/arm-none-eabi- make PRODUCT=$item MODE=$SCP_BUILD_MODE
+ make PRODUCT=$item MODE=$SCP_BUILD_MODE CC=${SCP_COMPILER_PATH}/arm-none-eabi-gcc
cp -r build/product/$item/* ${outdir}/
done
popd