diff options
| author | Quentin Young <qlyoung@users.noreply.github.com> | 2020-11-24 11:44:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-24 11:44:29 -0500 |
| commit | 2784d2c7d2b9d40509cfd9cb6ac59b9da06fbcfb (patch) | |
| tree | 7aa54251494172bf5fbce97bc311b2c99d7c47f3 | |
| parent | 7b1d13bb1fba09ee56379b3e10ca2c539ce0a240 (diff) | |
| parent | 20fdd70fd037a2f04b4d8066b096d81779abd171 (diff) | |
Merge pull request #7475 from eololab/add-more-parameters-for-crosscompilation
build: add more precious variables for cross-compilation
| -rwxr-xr-x | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0b09e8db08..6a7353d51a 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" |
