|
@@ -308,12 +308,14 @@ check_arm_abi = \
|
|
echo "External toolchain uses the unsuported OABI" ; \
|
|
echo "External toolchain uses the unsuported OABI" ; \
|
|
exit 1 ; \
|
|
exit 1 ; \
|
|
fi ; \
|
|
fi ; \
|
|
- if ! echo 'int main(void) {}' | $${__CROSS_CC} -x c -o /dev/null - ; then \
|
|
|
|
|
|
+ if ! echo 'int main(void) {}' | $${__CROSS_CC} -x c -o $(BUILD_DIR)/.br-toolchain-test.tmp - ; then \
|
|
|
|
+ rm -f $(BUILD_DIR)/.br-toolchain-test.tmp*; \
|
|
abistr_$(BR2_ARM_EABI)='EABI'; \
|
|
abistr_$(BR2_ARM_EABI)='EABI'; \
|
|
abistr_$(BR2_ARM_EABIHF)='EABIhf'; \
|
|
abistr_$(BR2_ARM_EABIHF)='EABIhf'; \
|
|
echo "Incorrect ABI setting: $${abistr_y} selected, but toolchain is incompatible"; \
|
|
echo "Incorrect ABI setting: $${abistr_y} selected, but toolchain is incompatible"; \
|
|
exit 1 ; \
|
|
exit 1 ; \
|
|
- fi
|
|
|
|
|
|
+ fi ; \
|
|
|
|
+ rm -f $(BUILD_DIR)/.br-toolchain-test.tmp*
|
|
|
|
|
|
#
|
|
#
|
|
# Check that the external toolchain supports C++
|
|
# Check that the external toolchain supports C++
|