Various user application software libraries will be ported and integrated into the SDK. Rename the toolchain libs build options and scripts to better differentiate between them.
Signed-off-by: Tudor Cretu tudor.cretu@arm.com --- morello/scripts/build-all.sh | 14 +++++++------- ...d-libraries.sh => build-toolchain-libraries.sh} | 0 2 files changed, 7 insertions(+), 7 deletions(-) rename morello/scripts/{build-libraries.sh => build-toolchain-libraries.sh} (100%)
diff --git a/morello/scripts/build-all.sh b/morello/scripts/build-all.sh index d57a69c..043ffce 100755 --- a/morello/scripts/build-all.sh +++ b/morello/scripts/build-all.sh @@ -48,7 +48,7 @@ OPTIONS_KSELFTEST="off" OPTIONS_C_APPS="off" OPTIONS_ROOTFS="off" OPTIONS_DOCKER="off" -OPTIONS_BUILD_LIB="off" +OPTIONS_TOOLCHAIN_LIB="off" OPTIONS_DEV_MODE="off" OPTIONS_ENV_INSTALL="off" OPTIONS_CLEAN="off" @@ -60,7 +60,7 @@ export OPTIONS_KSELFTEST export OPTIONS_C_APPS export OPTIONS_ROOTFS export OPTIONS_DOCKER -export OPTIONS_BUILD_LIB +export OPTIONS_TOOLCHAIN_LIB export OPTIONS_DEV_MODE export OPTIONS_ENV_INSTALL export OPTIONS_CLEAN @@ -85,7 +85,7 @@ OPTIONS: --c-apps builds example c applications for Morello --rootfs builds the rootfs for Morello --docker generate a busybox based docker image - --build-lib build libraries from source (e.g. compiler_rt, crtobjects...) + --toolchain-lib builds toolchain libraries from source (e.g. compiler_rt, crtobjects...)
--clean cleans all the selected projects
@@ -110,7 +110,7 @@ main () { --c-apps) OPTIONS_C_APPS="on" ;; --rootfs) OPTIONS_ROOTFS="on" ;; --docker) OPTIONS_DOCKER="on";; - --build-lib) OPTIONS_BUILD_LIB="on";; + --toolchain-lib) OPTIONS_TOOLCHAIN_LIB="on";; --clean) OPTIONS_CLEAN="on";; --install) OPTIONS_INSTALL="on" ;; --help|-h) help ;; @@ -167,9 +167,9 @@ main () { ${MORELLO_AARCH64_HOME}/scripts/build-kselftest.sh fi
- if [ "$OPTIONS_BUILD_LIB" = "on" ]; then - # Build Libraries - ${MORELLO_AARCH64_HOME}/scripts/build-libraries.sh + if [ "$OPTIONS_TOOLCHAIN_LIB" = "on" ]; then + # Build Toolchain Libraries + ${MORELLO_AARCH64_HOME}/scripts/build-toolchain-libraries.sh fi
if [ "$OPTIONS_C_APPS" = "on" ]; then diff --git a/morello/scripts/build-libraries.sh b/morello/scripts/build-toolchain-libraries.sh similarity index 100% rename from morello/scripts/build-libraries.sh rename to morello/scripts/build-toolchain-libraries.sh