diff options
author | Matthias Maennich <maennich@google.com> | 2019-05-28 09:33:48 +0100 |
---|---|---|
committer | Matthias Maennich <maennich@google.com> | 2019-05-28 09:33:48 +0100 |
commit | 334f5cfe4053315f13e173e7ef7b9ddb72b1ba92 (patch) | |
tree | 30a915e075d8dc9dfd5ee07d9c688153a23d36f5 | |
parent | 898f1e4a82abd0ea6c4b1462aa5968744f247ce7 (diff) |
build_abi.sh: pass through CC_LD_ARGS to `make olddefconfig`
Ensure we use the correct toolchain when reconfiguring for abi builds.
Change-Id: I35233575ed081a10cadbfac114d13affd4908a5e
Signed-off-by: Matthias Maennich <maennich@google.com>
-rwxr-xr-x | build_abi.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_abi.sh b/build_abi.sh index 26bf4e0..792861d 100755 --- a/build_abi.sh +++ b/build_abi.sh @@ -36,7 +36,7 @@ function update_config_for_abi_dump() { ${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \ -e CONFIG_DEBUG_INFO (cd ${OUT_DIR} && \ - make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} olddefconfig) + make O=${OUT_DIR} ${CC_LD_ARG} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} olddefconfig) } # ensure we have a sufficient abigail installation in path before continuing |