summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-13 21:07:14 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-13 21:07:14 +0000
commit696a20fea495b589305abe6cbd4cbfeb498a33a6 (patch)
tree8da11e3b44d59fd5f4dd2abbe88196fcdd18aeda /configure.in
parent1edd0e68228fb1476e9972251f89c13e91ee44eb (diff)
downloadopenocd+libswd-696a20fea495b589305abe6cbd4cbfeb498a33a6.tar.gz
openocd+libswd-696a20fea495b589305abe6cbd4cbfeb498a33a6.tar.bz2
openocd+libswd-696a20fea495b589305abe6cbd4cbfeb498a33a6.tar.xz
openocd+libswd-696a20fea495b589305abe6cbd4cbfeb498a33a6.zip
- remove unused objcopy from configure.in
- make sure bin2char is built before openocd - add generated startup_tcl.c to clean list - pass startup_tcl directly to Jim_Eval git-svn-id: svn://svn.berlios.de/openocd/trunk@805 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in13
1 files changed, 0 insertions, 13 deletions
diff --git a/configure.in b/configure.in
index bc47064f..343b52c6 100644
--- a/configure.in
+++ b/configure.in
@@ -291,19 +291,6 @@ AC_LANG_C
AC_PROG_CC
AC_PROG_RANLIB
-AC_CHECK_PROG(OBJDUMP, objdump, objdump)
-AC_CHECK_PROG(OBJCOPY, objcopy, objcopy)
-
-if test x${OBJDUMP} != x -a x${OBJCOPY} != x ; then
- AC_MSG_CHECKING(objcopy command line)
- AC_TRY_COMPILE(,,[OBJCOPY_format=`${OBJDUMP} -f conftest.$ac_objext | sed -e '/file format/!d' -e 's/.*format \(.*\)/\1/'`
- OBJCOPY_arch=`${OBJDUMP} -f conftest.$ac_objext | sed -e '/architecture/!d' -e 's/.*architecture: \(.*\),.*/\1/'`])
- AC_MSG_RESULT(-I binary -O ${OBJCOPY_format} -B ${OBJCOPY_arch})
-fi
-
-AC_SUBST(OBJCOPY_FORMAT, ${OBJCOPY_format})
-AC_SUBST(OBJCOPY_ARCH, ${OBJCOPY_arch})
-
AC_SUBST(WITH_FTD2XX, $with_ftd2xx)
AC_OUTPUT(Makefile src/Makefile src/helper/Makefile src/jtag/Makefile src/xsvf/Makefile src/target/Makefile src/server/Makefile src/flash/Makefile src/pld/Makefile doc/Makefile)