diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2022-07-17 17:53:58 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-07-24 19:53:44 +0200 |
commit | ddeabc75ebe3151ff7da302cb1aae702b3ad7eba (patch) | |
tree | db657d71450bce52c3b72101cde26207383f77d9 /scripts | |
parent | f4dd18ca39c42a324e34633c8ee553717531bc3b (diff) | |
download | upstream-ddeabc75ebe3151ff7da302cb1aae702b3ad7eba.tar.gz upstream-ddeabc75ebe3151ff7da302cb1aae702b3ad7eba.tar.bz2 upstream-ddeabc75ebe3151ff7da302cb1aae702b3ad7eba.zip |
scripts: ext-toolchain: actually probe libc type on config generation
Currently we never call probe_cc before config generation, this cause
the script to never actually detect the correct libc type.
Call probe_cc before config generation to correctl set the .config file.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ext-toolchain.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/ext-toolchain.sh b/scripts/ext-toolchain.sh index c9ceb150c1..1ef3f42c50 100755 --- a/scripts/ext-toolchain.sh +++ b/scripts/ext-toolchain.sh @@ -546,6 +546,7 @@ while [ -n "$1" ]; do --config) if probe_cc; then + probe_libc print_config "$1" exit $? fi |