2005-06-29 Marcel Telka <marcel@telka.sk>

* configure.ac: Simplified support for Hitachi Workbench/IAR Compiler.


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@653 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 20 years ago
parent b01c36b488
commit 79ec55d036

@ -1,3 +1,7 @@
2005-06-29 Marcel Telka <marcel@telka.sk>
* configure.ac: Simplified support for Hitachi Workbench/IAR Compiler.
2005-06-28 Marcel Telka <marcel@telka.sk>
* configure.ac (AC_INIT): Changed version number to 0.4.

@ -9,10 +9,10 @@ include-0.4:
* Added more manufacturer entries into Manufacturer's Identification Code database.
* Changes in stdint.h support:
- Ported uintptr_t type to old Windows SDK (win32)
- Added stdint.h support for Hitachi Workbench (hwbench)
- Added stdint.h support for Hitachi Workbench/IAR Compiler (hwbench)
* Changes in brux common headers:
- Added new parameter (adr) for detectflash function
* Added support for Hitachi Workbench.
* Added support for Hitachi Workbench/IAR Compiler.
include-0.3.2 (2003-10-11):

@ -23,8 +23,8 @@ Installation instructions
4. Run `make install`.
Notes for Hitachi Workbench users
---------------------------------
Notes for Hitachi Workbench/IAR Compiler users
----------------------------------------------
You should use following parameters for the ./configure script:
--with-hwbench=PATH_TO_HWBENCH --host=hwbench

@ -55,20 +55,22 @@ AC_CACHE_CHECK([for hwbench installation], hwbench_path, [
for hwb_path in "$with_hwbench"; do
if test -f "$hwb_path/IAR/EXE/ICCH83.EXE"; then
hwbench_path="$hwb_path"
export CC="$hwb_path/IAR/EXE/ICCH83.EXE -I`cygpath -w \"$hwb_path/IAR/INC/\"|sed -e 's/\\\\/\\\\\\\\/g'`"
export CPP=/usr/bin/cpp
CC="$hwb_path/IAR/EXE/ICCH83.EXE"
CPPFLAGS="-I`cygpath -w \"$hwb_path/IAR/INC/\"|sed -e 's/\\\\/\\\\\\\\/g'`"
break
fi
done
])
AC_PROG_CC
generate_stdint_h="no"
AC_CHECK_HEADERS( stdint.h, [], [
if test "$hwbench_path" = "no"; then
if test "$hwbench_path" = "no"; then
AC_CHECK_HEADERS( stdint.h, [], [
AX_CREATE_STDINT_H( owce-stdint.h )
generate_stdint_h="yes"
fi
])
])
fi
AM_CONDITIONAL( GENERATE_STDINT_H, test "$generate_stdint_h" = "yes" )
AM_CONDITIONAL( HAVE_HWBENCH, test "$hwbench_path" != "no" )
HWBENCH_PATH="$hwbench_path"

Loading…
Cancel
Save