diff options
author | Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> | 2011-10-02 21:20:10 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-10-09 21:30:44 +0200 |
commit | c72f54bba491a76e353c44c678258ac8029e2bdf (patch) | |
tree | 284c353d2e3548fee98cee2b6d6e3b4af1119e81 /toolchain/toolchain-external/Config.in | |
parent | 2c23e937660f43131f68f6cbf2ff3fe3d0417032 (diff) | |
download | buildroot-novena-c72f54bba491a76e353c44c678258ac8029e2bdf.tar.gz buildroot-novena-c72f54bba491a76e353c44c678258ac8029e2bdf.zip |
toolchain-external: allow specifying extra external libraries
Custom toolchains may provide extra libraries that need to be copied to the
target. This patch adds a configuration option for this.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/toolchain-external/Config.in')
-rw-r--r-- | toolchain/toolchain-external/Config.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in index ff7e8db97..b6fa9bd26 100644 --- a/toolchain/toolchain-external/Config.in +++ b/toolchain/toolchain-external/Config.in @@ -322,6 +322,14 @@ config BR2_TOOLCHAIN_EXTERNAL_CXX support. If you don't know, leave the default value, Buildroot will tell you if it's correct or not. +config BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS + string "Extra toolchain libraries to be copied to target" + help + If your external toolchain provides extra libraries that + need to be copied to the target filesystem, enter them + here, separated by spaces. They will be copied to the + target's /lib directory. + endif # BR2_TOOLCHAIN_EXTERNAL_CUSTOM endif # BR2_TOOLCHAIN_EXTERNAL |