diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-07-17 21:42:32 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-07-17 21:42:32 +0200 |
commit | 63b84da2ec93599540541e7ef1e45ae537c21479 (patch) | |
tree | ddcd7a0f6937ca2d80fded1ddc7348fa987409fb | |
parent | f1d45eccd33080a48a0923f5b4298addf590b60b (diff) | |
download | crosstool-ng-63b84da2ec93599540541e7ef1e45ae537c21479.tar.gz crosstool-ng-63b84da2ec93599540541e7ef1e45ae537c21479.tar.bz2 crosstool-ng-63b84da2ec93599540541e7ef1e45ae537c21479.zip |
configure: add checks for objcopy and objdump
These two went MIA after the migration to an autoconf-based ./configure.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
(transplanted from 2d362c2a8ed369f72027da00ec79245cb44bbf82)
-rw-r--r-- | configure.ac | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index e9950c64..19c904e1 100644 --- a/configure.ac +++ b/configure.ac @@ -121,6 +121,25 @@ AC_PROG_CC AS_IF([test -z "$CC"], [AC_MSG_ERROR([no suitable compiler found])]) AC_PROG_CPP + +# But we still need a way to specify the PATH to GNU versions (Damn MacOS) +AC_ARG_WITH([objcopy], + AS_HELP_STRING([--with-objcopy=PATH], + [Specify the full PATH to GNU objcopy]), + [OBJCOPY=$withval]) +AC_ARG_WITH([objdump], + AS_HELP_STRING([--with-objdump=PATH], + [Specify the full PATH to GNU objdump]), + [OBJDUMP=$withval]) +AC_ARG_WITH([ranlib], + AS_HELP_STRING([--with-ranlib=PATH], + [Specify the full PATH to GNU ranlib]), + [RANLIB=$withval]) +AC_ARG_WITH([readelf], + AS_HELP_STRING([--with-readelf=PATH], + [Specify the full PATH to GNU readelf]), + [READELF=$withval]) + AC_PROG_RANLIB ACX_PATH_TOOL_REQ([OBJCOPY], [objcopy]) ACX_PATH_TOOL_REQ([OBJDUMP], [objdump]) |