diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2022-12-02 20:31:38 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-01-09 21:33:19 +0100 |
commit | 9590e1155d7a9dcfc30ba0a95ccea43698bab8cf (patch) | |
tree | 514a77d9853a500f5c2982013368d263c54f559a /toolchain/gcc/final | |
parent | e854dcaef37cdb59109448889e9da9358591748a (diff) | |
download | upstream-9590e1155d7a9dcfc30ba0a95ccea43698bab8cf.tar.gz upstream-9590e1155d7a9dcfc30ba0a95ccea43698bab8cf.tar.bz2 upstream-9590e1155d7a9dcfc30ba0a95ccea43698bab8cf.zip |
toolchain/gcc: use STAGING_DIR_HOST instead of hardcoding default
Use STAGING_DIR_HOST to reference staging host directory instead of
hardcoding it to default path.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'toolchain/gcc/final')
-rw-r--r-- | toolchain/gcc/final/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/gcc/final/Makefile b/toolchain/gcc/final/Makefile index 0315b9d1f1..049ddf61f0 100644 --- a/toolchain/gcc/final/Makefile +++ b/toolchain/gcc/final/Makefile @@ -9,7 +9,7 @@ GCC_CONFIGURE += \ --enable-threads \ --with-slibdir=$(TOOLCHAIN_DIR)/lib \ --enable-lto \ - --with-libelf=$(TOPDIR)/staging_dir/host + --with-libelf=$(STAGING_DIR_HOST) ifndef CONFIG_USE_GLIBC GCC_CONFIGURE += --disable-libsanitizer |