|
From: Marcel T. <te...@us...> - 2005-06-29 20:14:06
|
Update of /cvsroot/openwince/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3337 Modified Files: ChangeLog NEWS README configure.ac Log Message: 2005-06-29 Marcel Telka <ma...@te...> * configure.ac: Simplified support for Hitachi Workbench/IAR Compiler. Index: README =================================================================== RCS file: /cvsroot/openwince/include/README,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- README 28 Jun 2005 05:05:23 -0000 1.2 +++ README 29 Jun 2005 20:13:57 -0000 1.3 @@ -23,8 +23,8 @@ 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 Index: NEWS =================================================================== RCS file: /cvsroot/openwince/include/NEWS,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- NEWS 28 Jun 2005 05:08:53 -0000 1.50 +++ NEWS 29 Jun 2005 20:13:57 -0000 1.51 @@ -9,10 +9,10 @@ * 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): Index: configure.ac =================================================================== RCS file: /cvsroot/openwince/include/configure.ac,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- configure.ac 28 Jun 2005 05:08:53 -0000 1.13 +++ configure.ac 29 Jun 2005 20:13:57 -0000 1.14 @@ -55,20 +55,22 @@ 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" Index: ChangeLog =================================================================== RCS file: /cvsroot/openwince/include/ChangeLog,v retrieving revision 1.80 retrieving revision 1.81 diff -u -d -r1.80 -r1.81 --- ChangeLog 28 Jun 2005 05:08:53 -0000 1.80 +++ ChangeLog 29 Jun 2005 20:13:57 -0000 1.81 @@ -1,3 +1,7 @@ +2005-06-29 Marcel Telka <ma...@te...> + + * configure.ac: Simplified support for Hitachi Workbench/IAR Compiler. + 2005-06-28 Marcel Telka <ma...@te...> * configure.ac (AC_INIT): Changed version number to 0.4. |