diff options
author | Alexey Neyman <stilor@att.net> | 2015-11-09 18:36:52 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2015-11-13 10:32:26 -0800 |
commit | be2203be68166880c0dcc67e06a5cc96995c98b7 (patch) | |
tree | 9ead4df04cfa3f36f420193be2275025b0b922db | |
parent | 16f7a9578f094cfd00a5cb6fdeec6e27ad9c25a6 (diff) | |
download | crosstool-ng-be2203be68166880c0dcc67e06a5cc96995c98b7.tar.gz crosstool-ng-be2203be68166880c0dcc67e06a5cc96995c98b7.tar.bz2 crosstool-ng-be2203be68166880c0dcc67e06a5cc96995c98b7.zip |
Pass CFLAGS/LDFLAGS to backends.
Signed-off-by: Alexey Neyman <stilor@att.net>
-rw-r--r-- | scripts/build/companion_libs/210-expat.sh | 6 | ||||
-rw-r--r-- | scripts/build/companion_libs/220-ncurses.sh | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/scripts/build/companion_libs/210-expat.sh b/scripts/build/companion_libs/210-expat.sh index 25a69d3c..17acf29f 100644 --- a/scripts/build/companion_libs/210-expat.sh +++ b/scripts/build/companion_libs/210-expat.sh @@ -26,7 +26,9 @@ do_expat_for_host() { CT_mkdir_pushd "${CT_BUILD_DIR}/build-expat-host-${CT_HOST}" do_expat_backend host="${CT_HOST}" \ - prefix="${CT_HOST_COMPLIBS_DIR}" + prefix="${CT_HOST_COMPLIBS_DIR}" \ + cflags="${CT_CFLAGS_FOR_HOST}" \ + ldflags="${CT_LDFLAGS_FOR_HOST}" CT_Popd CT_EndStep @@ -66,6 +68,8 @@ do_expat_backend() { CT_DoLog EXTRA "Configuring expat" CT_DoExecLog CFG \ + CFLAGS="${cflags}" \ + LDFLAGS="${ldflags}" \ "${CT_SRC_DIR}/expat-${CT_EXPAT_VERSION}/configure" \ --build=${CT_BUILD} \ --host=${host} \ diff --git a/scripts/build/companion_libs/220-ncurses.sh b/scripts/build/companion_libs/220-ncurses.sh index 2011a65f..176e99f8 100644 --- a/scripts/build/companion_libs/220-ncurses.sh +++ b/scripts/build/companion_libs/220-ncurses.sh @@ -34,6 +34,8 @@ do_ncurses_for_build() { "--without-ada") do_ncurses_backend host="${CT_BUILD}" \ destdir="${CT_BUILDTOOLS_PREFIX_DIR}" \ + cflags="${CT_CFLAGS_FOR_BUILD}" \ + ldflags="${CT_LDFLAGS_FOR_BUILD}" \ "${opts[@]}" CT_Popd CT_EndStep @@ -60,6 +62,8 @@ do_ncurses_for_host() { "--without-ada") do_ncurses_backend host="${CT_HOST}" \ prefix="${CT_HOST_COMPLIBS_DIR}" \ + cflags="${CT_CFLAGS_FOR_HOST}" \ + ldflags="${CT_LDFLAGS_FOR_HOST}" \ "${opts[@]}" CT_Popd CT_EndStep @@ -120,6 +124,8 @@ do_ncurses_backend() { CT_DoLog EXTRA "Configuring ncurses" CT_DoExecLog CFG \ + CFLAGS="${cflags}" \ + LDFLAGS="${ldflags}" \ "${CT_SRC_DIR}/ncurses-${CT_NCURSES_VERSION}/configure" \ --build=${CT_BUILD} \ --host=${host} \ |