diff options
author | Quentin Young <qlyoung@users.noreply.github.com> | 2020-11-24 17:44:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-24 17:44:29 +0100 |
commit | 2784d2c7d2b9d40509cfd9cb6ac59b9da06fbcfb (patch) | |
tree | 7aa54251494172bf5fbce97bc311b2c99d7c47f3 /configure.ac | |
parent | Merge pull request #7560 from opensourcerouting/fix_topotest_logs (diff) | |
parent | build: add more precious variables for cross-compilation (diff) | |
download | frr-2784d2c7d2b9d40509cfd9cb6ac59b9da06fbcfb.tar.xz frr-2784d2c7d2b9d40509cfd9cb6ac59b9da06fbcfb.zip |
Merge pull request #7475 from eololab/add-more-parameters-for-crosscompilation
build: add more precious variables for cross-compilation
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0b09e8db0..6a7353d51 100755 --- a/configure.ac +++ b/configure.ac @@ -25,6 +25,13 @@ dnl ----------------------------------- AC_CANONICAL_BUILD() AC_CANONICAL_HOST() +AC_ARG_VAR([AR],[archiver command]) +AC_ARG_VAR([LD],[linker command]) +AC_ARG_VAR([OBJCOPY],[objcopy command]) +AC_ARG_VAR([OBJDUMP],[objdump command]) +AC_ARG_VAR([RANLIB],[ranlib command]) +AC_ARG_VAR([STRIP],[strip command]) + hosttools_clippy="false" build_clippy="true" |