You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(16) |
Aug
(203) |
Sep
(142) |
Oct
(113) |
Nov
(73) |
Dec
(27) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(7) |
Feb
(38) |
Mar
(6) |
Apr
(1) |
May
(9) |
Jun
(104) |
Jul
(6) |
Aug
(11) |
Sep
(13) |
Oct
(6) |
Nov
(15) |
Dec
(37) |
2008 |
Jan
(17) |
Feb
(4) |
Mar
(6) |
Apr
(4) |
May
(2) |
Jun
(5) |
Jul
(1) |
Aug
(3) |
Sep
(21) |
Oct
(7) |
Nov
|
Dec
(3) |
2009 |
Jan
(4) |
Feb
(15) |
Mar
|
Apr
(34) |
May
(44) |
Jun
(12) |
Jul
(6) |
Aug
(15) |
Sep
(20) |
Oct
(10) |
Nov
(1) |
Dec
(20) |
2010 |
Jan
(19) |
Feb
(5) |
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ped...@us...> - 2008-01-10 00:31:19
|
Revision: 1128 http://cegcc.svn.sourceforge.net/cegcc/?rev=1128&view=rev Author: pedroalves Date: 2008-01-09 16:31:13 -0800 (Wed, 09 Jan 2008) Log Message: ----------- Add a top level ChangeLog.ce. Added Paths: ----------- trunk/cegcc/src/binutils/ChangeLog.ce Added: trunk/cegcc/src/binutils/ChangeLog.ce =================================================================== This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2008-01-09 19:58:50
|
Revision: 1127 http://cegcc.svn.sourceforge.net/cegcc/?rev=1127&view=rev Author: dannybackx Date: 2008-01-09 11:58:46 -0800 (Wed, 09 Jan 2008) Log Message: ----------- Auch, this previous commit contains duplicates with another file. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/aygshell.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2008-01-08 01:08:58 UTC (rev 1126) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2008-01-09 19:58:46 UTC (rev 1127) @@ -1,3 +1,7 @@ +2008-01-09 Danny Backx <dan...@us...> + + * include/aygshell.h (SIPINFO): Remove, this was a duplicate. + 2008-01-06 Danny Backx <dan...@us...> * include/aygshell.h (SIPSTATE,SHSipPreference): Define. Modified: trunk/cegcc/src/w32api/include/aygshell.h =================================================================== --- trunk/cegcc/src/w32api/include/aygshell.h 2008-01-08 01:08:58 UTC (rev 1126) +++ trunk/cegcc/src/w32api/include/aygshell.h 2008-01-09 19:58:46 UTC (rev 1127) @@ -80,32 +80,6 @@ extern BOOL SHHandleWMSettingChange(HWND, WPARAM, LPARAM, SHACTIVATEINFO *); extern BOOL SHHandleWMActivate(HWND, WPARAM, LPARAM, SHACTIVATEINFO *, DWORD); -/* - * Query the SIP state - */ -typedef struct SIPINFO { - DWORD cbSize; - DWORD fdwFlags; - RECT rcVisibleDesktop; - RECT rcSipRect; - DWORD dwImDataSize; - void *pvImData; -} SIPINFO, *PSIPINFO; - -#define SPI_SETCOMPLETIONINFO 223 -#define SPI_SETSIPINFO 224 -#define SPI_GETSIPINFO 225 -#define SPI_SETCURRENTIM 226 -#define SPI_GETCURRENTIM 227 -#define SPI_APPBUTTONCHANGE 228 -#define SPI_RESERVED 229 -#define SPI_SYNCSETTINGSCHANGE 230 - -#define SIPF_OFF 0 -#define SIPF_ON 1 -#define SIPF_DOCKED 2 -#define SIPF_LOCKED 4 - #if (_WIN32_WCE >= 0x0300) typedef enum { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2008-01-06 18:31:30
|
Revision: 1125 http://cegcc.svn.sourceforge.net/cegcc/?rev=1125&view=rev Author: dannybackx Date: 2008-01-06 10:31:27 -0800 (Sun, 06 Jan 2008) Log Message: ----------- Make install.sh target-independent and also detect errors. Modified Paths: -------------- trunk/cegcc/src/cegcc/fakecegccdll/ChangeLog trunk/cegcc/src/cegcc/fakecegccdll/install.sh Modified: trunk/cegcc/src/cegcc/fakecegccdll/ChangeLog =================================================================== --- trunk/cegcc/src/cegcc/fakecegccdll/ChangeLog 2008-01-06 10:06:01 UTC (rev 1124) +++ trunk/cegcc/src/cegcc/fakecegccdll/ChangeLog 2008-01-06 18:31:27 UTC (rev 1125) @@ -1,3 +1,7 @@ +2008-01-06 Danny Backx <dan...@us...> + + * install.sh: Make it TARGET-independent and detect errors. + 2006-10-10 Pedro Alves <ped...@po...> Initial import. * cegcc.s : New file. Modified: trunk/cegcc/src/cegcc/fakecegccdll/install.sh =================================================================== --- trunk/cegcc/src/cegcc/fakecegccdll/install.sh 2008-01-06 10:06:01 UTC (rev 1124) +++ trunk/cegcc/src/cegcc/fakecegccdll/install.sh 2008-01-06 18:31:27 UTC (rev 1125) @@ -9,18 +9,21 @@ PREFIX=$1 fi -TARGET=arm-wince-cegcc +if [ x$TARGET = x ]; then + TARGET=arm-wince-cegcc +fi LIBDIR=${PREFIX}/${TARGET}/lib AS=${TARGET}-as AR=${TARGET}-ar -${AS} cegcc.s -o cegcc.o +${AS} cegcc.s -o cegcc.o || exit 1 -mkdir -p ${LIBDIR} +mkdir -p ${LIBDIR} || exit 1 CEGCCLIB=${LIBDIR}/libcegcc.dll.a -rm -fv ${CEGCCLIB} -${TARGET}-ar q ${CEGCCLIB} cegcc.o +rm -fv ${CEGCCLIB} || exit 1 +${TARGET}-ar q ${CEGCCLIB} cegcc.o || exit 1 rm -fv cegcc.o +exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2008-01-06 10:06:05
|
Revision: 1124 http://cegcc.svn.sourceforge.net/cegcc/?rev=1124&view=rev Author: dannybackx Date: 2008-01-06 02:06:01 -0800 (Sun, 06 Jan 2008) Log Message: ----------- Add some work I had left uncommitted for a while, augmented with remarks from http://www.bradwich.com. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/aygshell.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2008-01-06 10:03:31 UTC (rev 1123) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2008-01-06 10:06:01 UTC (rev 1124) @@ -1,3 +1,9 @@ +2008-01-06 Danny Backx <dan...@us...> + + * include/aygshell.h (SIPSTATE,SHSipPreference): Define. + * include/aygshell.h (SIPINFO): Define. + * include/aygshell.h (SHCMBM_GETSUBMENU,SETSUBMENU): Define. + 2007-12-25 Pedro Alves <ped...@po...> * configure.in (SUBDIRS): Set depending on $host_alias instead of Modified: trunk/cegcc/src/w32api/include/aygshell.h =================================================================== --- trunk/cegcc/src/w32api/include/aygshell.h 2008-01-06 10:03:31 UTC (rev 1123) +++ trunk/cegcc/src/w32api/include/aygshell.h 2008-01-06 10:06:01 UTC (rev 1124) @@ -80,6 +80,18 @@ extern BOOL SHHandleWMSettingChange(HWND, WPARAM, LPARAM, SHACTIVATEINFO *); extern BOOL SHHandleWMActivate(HWND, WPARAM, LPARAM, SHACTIVATEINFO *, DWORD); +/* + * Query the SIP state + */ +typedef struct SIPINFO { + DWORD cbSize; + DWORD fdwFlags; + RECT rcVisibleDesktop; + RECT rcSipRect; + DWORD dwImDataSize; + void *pvImData; +} SIPINFO, *PSIPINFO; + #define SPI_SETCOMPLETIONINFO 223 #define SPI_SETSIPINFO 224 #define SPI_GETSIPINFO 225 @@ -94,6 +106,19 @@ #define SIPF_DOCKED 2 #define SIPF_LOCKED 4 +#if (_WIN32_WCE >= 0x0300) +typedef enum +{ + SIP_UP = 0, + SIP_DOWN, + SIP_FORCEDOWN, + SIP_UNCHANGED, + SIP_INPUTDIALOG +} SIPSTATE; + +WINSHELLAPI BOOL WINAPI SHSipPreference (HWND hWnd, SIPSTATE st); +#endif /* _WIN32_WCE >= 0x0300 */ + /* * Work with the PocketPC "New" menu. */ @@ -220,7 +245,9 @@ /* * http://www.docjar.com/html/api/org/eclipse/swt/internal/win32/OS.java.html */ +#define SHCMBM_SETSUBMENU 0x0590 #define SHCMBM_GETSUBMENU 0x0591 +#define SHCMBM_GETMENU 0x0592 #endif /* _WIN32_WCE */ #if (_WIN32_WCE >= 0x0400) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2008-01-06 10:03:51
|
Revision: 1123 http://cegcc.svn.sourceforge.net/cegcc/?rev=1123&view=rev Author: dannybackx Date: 2008-01-06 02:03:31 -0800 (Sun, 06 Jan 2008) Log Message: ----------- Add flite, see http://www.bradwich.com. Modified Paths: -------------- trunk/cegcc/website/software-that-works.html Modified: trunk/cegcc/website/software-that-works.html =================================================================== --- trunk/cegcc/website/software-that-works.html 2008-01-02 20:10:02 UTC (rev 1122) +++ trunk/cegcc/website/software-that-works.html 2008-01-06 10:03:31 UTC (rev 1123) @@ -41,6 +41,11 @@ <td class="works">Yes</td> </tr> <tr> +<td class="project"> <a href="http://www.speech.cs.cmu.edu/flite/">Flite</a> </td> +<td class="description">Flite (festival-lite) is a small, fast run-time speech synthesis engine</td> +<td class="works">Yes</td> +</tr> +<tr> <td class="project"><a href="http://www.openssl.org/source/">OpenSSL-0.9.8e</a></td> <td class="description">The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library. OpenSSL is based on the excellent SSLeay library developed by Eric A. Young and Tim J. Hudson.</td> <td class="works">Ported with patches, need to address these in CeGCC</td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2008-01-02 20:10:10
|
Revision: 1122 http://cegcc.svn.sourceforge.net/cegcc/?rev=1122&view=rev Author: dannybackx Date: 2008-01-02 12:10:02 -0800 (Wed, 02 Jan 2008) Log Message: ----------- Use "?=" to assign to the TARGET variable so make picks up the value from the environment if it is there. Modified Paths: -------------- trunk/cegcc/src/ChangeLog trunk/cegcc/src/cegcc/cegccdll/Makefile trunk/cegcc/src/cegcc/libstdc++/Makefile Modified: trunk/cegcc/src/ChangeLog =================================================================== --- trunk/cegcc/src/ChangeLog 2008-01-02 10:17:46 UTC (rev 1121) +++ trunk/cegcc/src/ChangeLog 2008-01-02 20:10:02 UTC (rev 1122) @@ -1,3 +1,9 @@ +2008-01-02 Danny Backx <dan...@us...> + + * cegcc/cegccdll/Makefile, cegcc/libstdc++/Makefile: Use "?=" to + assign to the TARGET variable so make picks up the value from the + environment if it is there. + 2007-12-26 Danny Backx <dan...@us...> * build-mingw32ce.sh: add call to build-mingw32-dlls.sh. Modified: trunk/cegcc/src/cegcc/cegccdll/Makefile =================================================================== --- trunk/cegcc/src/cegcc/cegccdll/Makefile 2008-01-02 10:17:46 UTC (rev 1121) +++ trunk/cegcc/src/cegcc/cegccdll/Makefile 2008-01-02 20:10:02 UTC (rev 1122) @@ -15,7 +15,7 @@ TOP_SRCDIR?=../../.. SRCDIR=${TOP_SRCDIR}/src/cegcc/cegccdll -TARGET=arm-wince-cegcc +TARGET?=arm-wince-cegcc DLLNAME=cegcc.dll IMPLIB=lib$(DLLNAME).a Modified: trunk/cegcc/src/cegcc/libstdc++/Makefile =================================================================== --- trunk/cegcc/src/cegcc/libstdc++/Makefile 2008-01-02 10:17:46 UTC (rev 1121) +++ trunk/cegcc/src/cegcc/libstdc++/Makefile 2008-01-02 20:10:02 UTC (rev 1122) @@ -9,7 +9,7 @@ DLLNAME=libstdc++.dll IMPLIB=$(DLLNAME).a -TARGET=arm-wince-cegcc +TARGET?=arm-wince-cegcc AR=$(TARGET)-ar CC=$(TARGET)-gcc This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2008-01-02 10:17:49
|
Revision: 1121 http://cegcc.svn.sourceforge.net/cegcc/?rev=1121&view=rev Author: dannybackx Date: 2008-01-02 02:17:46 -0800 (Wed, 02 Jan 2008) Log Message: ----------- Change to scummvm and the way to report apps that can be used with cegcc. Modified Paths: -------------- trunk/cegcc/website/software-that-works.html Modified: trunk/cegcc/website/software-that-works.html =================================================================== --- trunk/cegcc/website/software-that-works.html 2007-12-26 09:48:15 UTC (rev 1120) +++ trunk/cegcc/website/software-that-works.html 2008-01-02 10:17:46 UTC (rev 1121) @@ -16,8 +16,12 @@ <LI><A HREF="#wontwork">Software that does not, and never will work with CeGCC</A></LI> </UL> <P> -Please help us to make this list more accurate. Send input to -<a href="mailto:ceg...@li...">ceg...@li...</a>. +Please help us to make this list more accurate. +Send input to +<a href="mailto:ceg...@li..."> + ceg...@li...</a> +if you're subscribed to that list, +or to the list maintainers (<i>cegcc-devel-owner@ ..</i>) otherwise. <P> <A NAME="works"><H1>Software that is confirmed to work with CeGCC</H1></A> <table BORDER=1> @@ -32,13 +36,8 @@ <td class="works">Yes</td> </tr> <tr> -<td class="project"> <a href="http://sourceforge.net/projects/cegcc">CeGCC - Cross development for Pocket PC</a> </td> -<td class="description"> CeGCC is a cross-development environment for creating Windows CE (Pocket PC) applications, from a Linux or a Cygwin host PC.</td> -<td class="works">Yes I guess</td> -</tr> -<tr> -<td class="project"> <a href="http://prolinux.free.fr/scid/PPC.html">Scid for Pocket PC</a></td> -<td class="description"> Scid Pocket is a chess program ported to Pocket PC with cegcc. The code is in C, compiled with cegcc and the UI uses Tcl/Tk. </td> +<td class="project"> <a href="http://sourceforge.net/projects/eurokbd">euro keyboard</a> </td> +<td class="description"> Multilanguage on-screen keyboard for PocketPC (Windows Mobile)</td> <td class="works">Yes</td> </tr> <tr> @@ -46,18 +45,30 @@ <td class="description">The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library. OpenSSL is based on the excellent SSLeay library developed by Eric A. Young and Tim J. Hudson.</td> <td class="works">Ported with patches, need to address these in CeGCC</td> </tr> -</tr> <tr> <td class="project"><a href="http://xinvest.dotsrc.org">PocketInvest</a></td> <td class="description">PocketInvest is a port to Windows CE of Xinvest, a personal finance package for X/Motif</td> <td class="works">Yes</td> </tr> <tr> -<td class="project"> <a href="http://sourceforge.net/projects/eurokbd">euro keyboard</a> </td> -<td class="description"> Multilanguage on-screen keyboard for PocketPC (Windows Mobile)</td> -<td class="works">?</td> +<td class="project"> <a href="http://prolinux.free.fr/scid/PPC.html">Scid for Pocket PC</a></td> +<td class="description"> Scid Pocket is a chess program ported to Pocket PC with cegcc. The code is in C, compiled with cegcc and the UI uses Tcl/Tk. </td> +<td class="works">Yes</td> </tr> +<td class="project"> <a href="http://sourceforge.net/projects/scummvm">ScummVM</a> </td> +<td class="description"> ScummVM is a cross-platform interpreter for several point-and-click adventure engines. This includes all SCUMM-based adventures by LucasArts, Simon the Sorcerer 1&2 by AdventureSoft, Beneath a Steel Sky and Broken Sword 1&2 by Revolution, and many more.</td> +<td class="works">Yes</td> +</tr> +<tr> +<td class="project"> <a href="http://sourceforge.net/projects/cegcc">CeGCC - Cross development for Pocket PC</a> </td> +<td class="description"> CeGCC is a cross-development environment for creating Windows CE (Pocket PC) applications, from a Linux or a Cygwin host PC.</td> +<td class="works">Yes I guess</td> +</tr> </table> + + + + <A NAME="dunno"><H1>To be rated : does this software work with CeGCC ?</H1></A> <table BORDER=1> <tr> @@ -551,11 +562,6 @@ <td class="works">?</td> </tr> <tr> -<td class="project"> <a href="http://sourceforge.net/projects/scummvm">ScummVM</a> </td> -<td class="description"> ScummVM is a cross-platform interpreter for several point-and-click adventure engines. This includes all SCUMM-based adventures by LucasArts, Simon the Sorcerer 1&2 by AdventureSoft, Beneath a Steel Sky and Broken Sword 1&2 by Revolution, and many more.</td> -<td class="works">?</td> -</tr> -<tr> <td class="project"> <a href="http://sourceforge.net/projects/xcsoar">XCSoar</a> </td> <td class="description"> PocketPC Gliding/Soaring computer. Airspace Warnings, Final Glide, Landing Points In Range, Unlimited Tasks, GPS and Vario inputs, Auto Wind Calculation, Topographical Map, Fully configurable polars and much more</td> <td class="works">?</td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dan...@us...> - 2007-12-26 09:48:33
|
Revision: 1120 http://cegcc.svn.sourceforge.net/cegcc/?rev=1120&view=rev Author: dannybackx Date: 2007-12-26 01:48:15 -0800 (Wed, 26 Dec 2007) Log Message: ----------- Add call to DLL build script. Modified Paths: -------------- trunk/cegcc/src/ChangeLog trunk/cegcc/src/build-mingw32ce.sh Modified: trunk/cegcc/src/ChangeLog =================================================================== --- trunk/cegcc/src/ChangeLog 2007-12-25 23:45:15 UTC (rev 1119) +++ trunk/cegcc/src/ChangeLog 2007-12-26 09:48:15 UTC (rev 1120) @@ -1,3 +1,7 @@ +2007-12-26 Danny Backx <dan...@us...> + + * build-mingw32ce.sh: add call to build-mingw32-dlls.sh. + 2007-12-25 Pedro Alves <ped...@po...> * build-mingw32ce-dlls.sh: Change default target to arm-mingw32ce. Modified: trunk/cegcc/src/build-mingw32ce.sh =================================================================== --- trunk/cegcc/src/build-mingw32ce.sh 2007-12-25 23:45:15 UTC (rev 1119) +++ trunk/cegcc/src/build-mingw32ce.sh 2007-12-26 09:48:15 UTC (rev 1120) @@ -367,6 +367,24 @@ cd ${BUILD_DIR} } +build_dlls() +{ + echo "" + echo "BUILDING DLL libraries --------------------------" + echo "" + echo "" + + cd ${BUILD_DIR} + + mkdir -p dll || exit 1 + cd dll + + cd ${BASE_DIRECTORY} || exit 1 + ${BASE_DIRECTORY}/build-mingw32ce-dlls.sh || exit 1 + + cd ${BUILD_DIR} +} + build_all() { build_binutils @@ -378,6 +396,7 @@ build_profile build_gdb build_gdbstub + build_dlls } split_components=`echo "${components}" | sed -e 's/,/ /g'` @@ -388,7 +407,7 @@ case $1 in binutils | bootstrapgcc | w32api | \ mingw | gcc | gdb | gdbstub | \ - docs | profile | all) + docs | profile | dlls | all) ;; *) echo "Please enter a valid build option." @@ -424,6 +443,7 @@ gdbstub) build_gdbstub ;; docs) build_docs ;; profile) build_profile ;; + dlls) build_dlls ;; all) build_all ;; esac shift This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 23:45:18
|
Revision: 1119 http://cegcc.svn.sourceforge.net/cegcc/?rev=1119&view=rev Author: pedroalves Date: 2007-12-25 15:45:15 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * build-mingw32ce-dlls.sh: Change default target to arm-mingw32ce. Remove dependency on readlink. Modified Paths: -------------- trunk/cegcc/src/ChangeLog trunk/cegcc/src/build-mingw32ce-dlls.sh Modified: trunk/cegcc/src/ChangeLog =================================================================== --- trunk/cegcc/src/ChangeLog 2007-12-25 23:39:57 UTC (rev 1118) +++ trunk/cegcc/src/ChangeLog 2007-12-25 23:45:15 UTC (rev 1119) @@ -1,5 +1,10 @@ 2007-12-25 Pedro Alves <ped...@po...> + * build-mingw32ce-dlls.sh: Change default target to arm-mingw32ce. + Remove dependency on readlink. + +2007-12-25 Pedro Alves <ped...@po...> + * build-mingw32ce.sh: Change default target to arm-mingw32ce. 2007-12-25 Pedro Alves <ped...@po...> Modified: trunk/cegcc/src/build-mingw32ce-dlls.sh =================================================================== --- trunk/cegcc/src/build-mingw32ce-dlls.sh 2007-12-25 23:39:57 UTC (rev 1118) +++ trunk/cegcc/src/build-mingw32ce-dlls.sh 2007-12-25 23:45:15 UTC (rev 1119) @@ -3,14 +3,14 @@ # Based on script from: # http://cygwin.com/ml/cygwin-apps/2006-05/msg00044.html -TARGET=arm-unknown-mingw32ce +TARGET=arm-mingw32ce PREFIX=/opt/mingw32ce GCC_VERSION=4.1.0 export PATH=${PREFIX}/bin:${PATH} -srcdir=`readlink -f ./gcc` -builddir=`readlink -f build-mingw32ce` +srcdir=`cd gcc; pwd` +builddir=`cd build-mingw32ce; pwd` pushd ${PREFIX}/${TARGET}/lib This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 23:39:58
|
Revision: 1118 http://cegcc.svn.sourceforge.net/cegcc/?rev=1118&view=rev Author: pedroalves Date: 2007-12-25 15:39:57 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * build-mingw32ce.sh: Change default target to arm-mingw32ce. Modified Paths: -------------- trunk/cegcc/src/ChangeLog trunk/cegcc/src/build-mingw32ce.sh Modified: trunk/cegcc/src/ChangeLog =================================================================== --- trunk/cegcc/src/ChangeLog 2007-12-25 23:25:15 UTC (rev 1117) +++ trunk/cegcc/src/ChangeLog 2007-12-25 23:39:57 UTC (rev 1118) @@ -1,5 +1,9 @@ 2007-12-25 Pedro Alves <ped...@po...> + * build-mingw32ce.sh: Change default target to arm-mingw32ce. + +2007-12-25 Pedro Alves <ped...@po...> + * build-mingw32ce.sh: Display bootstrapgcc option on `usage`. Move option reporting below option processing. Exit immediatelly if an invalid component is specified. Actually allow specifying a Modified: trunk/cegcc/src/build-mingw32ce.sh =================================================================== --- trunk/cegcc/src/build-mingw32ce.sh 2007-12-25 23:25:15 UTC (rev 1117) +++ trunk/cegcc/src/build-mingw32ce.sh 2007-12-25 23:39:57 UTC (rev 1118) @@ -398,7 +398,7 @@ shift done -export TARGET="arm-unknown-mingw32ce" +export TARGET="arm-mingw32ce" export BUILD=`sh ${BASE_DIRECTORY}/gcc/config.guess` export PATH=${PREFIX}/bin:${PATH} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 23:25:17
|
Revision: 1117 http://cegcc.svn.sourceforge.net/cegcc/?rev=1117&view=rev Author: pedroalves Date: 2007-12-25 15:25:15 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * libgcov.c (gcov_exit) [UNDER_CE]: Fix mbstowcs/wcstombs confusion. Always null terminate strings. Fix formatting. Modified Paths: -------------- trunk/cegcc/src/gcc/gcc/ChangeLog.ce trunk/cegcc/src/gcc/gcc/libgcov.c Modified: trunk/cegcc/src/gcc/gcc/ChangeLog.ce =================================================================== --- trunk/cegcc/src/gcc/gcc/ChangeLog.ce 2007-12-25 23:12:07 UTC (rev 1116) +++ trunk/cegcc/src/gcc/gcc/ChangeLog.ce 2007-12-25 23:25:15 UTC (rev 1117) @@ -1,5 +1,10 @@ 2007-12-25 Pedro Alves <ped...@po...> + * libgcov.c (gcov_exit) [UNDER_CE]: Fix mbstowcs/wcstombs + confusion. Always null terminate strings. Fix formatting. + +2007-12-25 Pedro Alves <ped...@po...> + * config.gcc: Remove redundant arm-wince-mingw32ce,arm-*-mingw32ce and arm-wince-cegcc,arm-*-cegcc copies. Modified: trunk/cegcc/src/gcc/gcc/libgcov.c =================================================================== --- trunk/cegcc/src/gcc/gcc/libgcov.c 2007-12-25 23:12:07 UTC (rev 1116) +++ trunk/cegcc/src/gcc/gcc/libgcov.c 2007-12-25 23:25:15 UTC (rev 1117) @@ -319,11 +319,14 @@ #endif #ifdef UNDER_CE { - wchar_t x[256]; - int l = strlen(gi_filename); + wchar_t x[256]; + int l = strlen (gi_filename); l = (l < 256) ? l : 255; - wcstombs(x, gi_filename, l); - MessageBoxW(0, L"gcov_open", x, 0); + mbstowcs (x, gi_filename, l); + x[l] = '\0'; + extern int MessageBoxW (void *, const wchar_t *, + const wchar_t *, unsigned); + MessageBoxW (0, L"gcov_open", x, 0); } #endif if (!gcov_open (gi_filename)) @@ -333,10 +336,13 @@ #else { wchar_t x[256]; - int l = strlen(gi_filename); + int l = strlen (gi_filename); l = (l < 256) ? l : 255; - mbstowcs(x, gi_filename, l); - MessageBoxW(0, x, L"gcov_open couldn't open file", 0); + mbstowcs (x, gi_filename, l); + x[l] = '\0'; + extern int MessageBoxW (void *, const wchar_t *, + const wchar_t *, unsigned); + MessageBoxW (0, x, L"gcov_open couldn't open file", 0); } #endif continue; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 23:12:18
|
Revision: 1116 http://cegcc.svn.sourceforge.net/cegcc/?rev=1116&view=rev Author: pedroalves Date: 2007-12-25 15:12:07 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * configure.in (SUBDIRS): Set depending on $host_alias instead of on $host. * Makefile.in: Capture $build_alias, $host_alias, $target_alias verbatim from config. Capture $build, $host, $target from config. Set $tooldir using $host_alias, not $target_alias. * libce/Makefile.in: Get $build, $build_alias, $host, $host_alias, $target and $target_alias from config. Use $build, $host, $target instead of the aliases to detect a native build. Use $host_alias instead of $target_alias to set the $tooldir. * configure: Regenerate. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/Makefile.in trunk/cegcc/src/w32api/configure trunk/cegcc/src/w32api/configure.in trunk/cegcc/src/w32api/libce/Makefile.in Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2007-12-25 23:03:53 UTC (rev 1115) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2007-12-25 23:12:07 UTC (rev 1116) @@ -1,5 +1,18 @@ 2007-12-25 Pedro Alves <ped...@po...> + * configure.in (SUBDIRS): Set depending on $host_alias instead of + on $host. + * Makefile.in: Capture $build_alias, $host_alias, $target_alias + verbatim from config. Capture $build, $host, $target from config. + Set $tooldir using $host_alias, not $target_alias. + * libce/Makefile.in: Get $build, $build_alias, $host, $host_alias, + $target and $target_alias from config. Use $build, $host, $target + instead of the aliases to detect a native build. Use $host_alias + instead of $target_alias to set the $tooldir. + * configure: Regenerate. + +2007-12-25 Pedro Alves <ped...@po...> + * configure.in (SUBDIRS): Set depending on host, and pass it to the Makefile. * Makefile.in (SUBDIRS): Get from configure. Modified: trunk/cegcc/src/w32api/Makefile.in =================================================================== --- trunk/cegcc/src/w32api/Makefile.in 2007-12-25 23:03:53 UTC (rev 1115) +++ trunk/cegcc/src/w32api/Makefile.in 2007-12-25 23:12:07 UTC (rev 1116) @@ -16,9 +16,13 @@ SUBDIRS = @SUBDIRS@ -build_alias = @build@ -host_alias = @host@ -target_alias = @target@ +build = @build@ +build_alias = @build_alias@ +host = @host@ +host_alias = @host_alias@ +target = @target@ +target_alias = @target_alias@ + with_cross_host = @with_cross_host@ prefix = @prefix@ conf_prefix = @prefix@ @@ -27,7 +31,7 @@ exec_prefix = @exec_prefix@ bindir = @bindir@ libdir = @libdir@ -tooldir = $(exec_prefix)/$(target_alias) +tooldir = $(exec_prefix)/$(host_alias) datadir = @datadir@ infodir = @infodir@ includedir = @includedir@ @@ -81,6 +85,11 @@ inst_libdir="$(inst_libdir)" \ inst_docdir="$(inst_docdir)" \ prefix="$(prefix)" \ + build="$(build)" \ + build_alias="$(build_alias)" \ + host="$(host)" \ + host_alias="$(host_alias)" \ + target="$(target)" \ target_alias="$(target_alias)" \ TAR="$(TAR)" \ TARFLAGS="$(TARFLAGS)" \ Modified: trunk/cegcc/src/w32api/configure =================================================================== --- trunk/cegcc/src/w32api/configure 2007-12-25 23:03:53 UTC (rev 1115) +++ trunk/cegcc/src/w32api/configure 2007-12-25 23:12:07 UTC (rev 1116) @@ -1998,7 +1998,7 @@ fi -case "${host}" in +case "${host_alias}" in *-mingw32ce* | *-cegcc*) SUBDIRS="libce" ;; Modified: trunk/cegcc/src/w32api/configure.in =================================================================== --- trunk/cegcc/src/w32api/configure.in 2007-12-25 23:03:53 UTC (rev 1115) +++ trunk/cegcc/src/w32api/configure.in 2007-12-25 23:12:07 UTC (rev 1116) @@ -50,7 +50,7 @@ fi AC_SUBST(BUILDENV) -case "${host}" in +case "${host_alias}" in *-mingw32ce* | *-cegcc*) SUBDIRS="libce" ;; Modified: trunk/cegcc/src/w32api/libce/Makefile.in =================================================================== --- trunk/cegcc/src/w32api/libce/Makefile.in 2007-12-25 23:03:53 UTC (rev 1115) +++ trunk/cegcc/src/w32api/libce/Makefile.in 2007-12-25 23:12:07 UTC (rev 1116) @@ -18,9 +18,13 @@ SUBDIRS := subdirs := -host_alias = @host@ -build_alias = @build@ -target_alias = @target@ +build = @build@ +build_alias = @build_alias@ +host = @host@ +host_alias = @host_alias@ +target = @target@ +target_alias = @target_alias@ + prefix = @prefix@ includedir:=@includedir@ @@ -28,14 +32,14 @@ exec_prefix = @exec_prefix@ libdir:=@libdir@ bindir = @bindir@ -ifeq ($(target_alias),$(host_alias)) -ifeq ($(build_alias),$(host_alias)) +ifeq ($(target),$(host)) +ifeq ($(build),$(host)) tooldir:=$(exec_prefix) else -tooldir:=$(exec_prefix)/$(target_alias) +tooldir:=$(exec_prefix)/$(host_alias) endif else -tooldir:=$(exec_prefix)/$(target_alias) +tooldir:=$(exec_prefix)/$(host_alias) endif datadir = @datadir@ infodir = @infodir@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 23:04:03
|
Revision: 1115 http://cegcc.svn.sourceforge.net/cegcc/?rev=1115&view=rev Author: pedroalves Date: 2007-12-25 15:03:53 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * Makefile.in, mingwex/Makefile.in, profile/Makefile.in: Use $host_alias instead of $target_alias throughout. Use $build, $host, $target instead of the aliases to detect a native build. Pass $build, $build_alias, $host, $host_alias, $target and $target_alias to sub-Makefiles. Modified Paths: -------------- trunk/cegcc/src/mingw/ChangeLog.mingw32ce trunk/cegcc/src/mingw/Makefile.in trunk/cegcc/src/mingw/mingwex/Makefile.in trunk/cegcc/src/mingw/profile/Makefile.in Modified: trunk/cegcc/src/mingw/ChangeLog.mingw32ce =================================================================== --- trunk/cegcc/src/mingw/ChangeLog.mingw32ce 2007-12-25 23:00:10 UTC (rev 1114) +++ trunk/cegcc/src/mingw/ChangeLog.mingw32ce 2007-12-25 23:03:53 UTC (rev 1115) @@ -1,5 +1,13 @@ 2007-12-25 Pedro Alves <ped...@po...> + * Makefile.in, mingwex/Makefile.in, profile/Makefile.in: Use + $host_alias instead of $target_alias throughout. Use $build, + $host, $target instead of the aliases to detect a native build. + Pass $build, $build_alias, $host, $host_alias, $target and + $target_alias to sub-Makefiles. + +2007-12-25 Pedro Alves <ped...@po...> + * Makefile.in: s/wince/mingw32ce/g from host matchings. * mingwexlibce/Makefile.in: Likewise. Modified: trunk/cegcc/src/mingw/Makefile.in =================================================================== --- trunk/cegcc/src/mingw/Makefile.in 2007-12-25 23:00:10 UTC (rev 1114) +++ trunk/cegcc/src/mingw/Makefile.in 2007-12-25 23:03:53 UTC (rev 1115) @@ -25,8 +25,11 @@ srcdir = @srcdir@ objdir = . +build = @build@ +build_alias = @build_alias@ +host = @host@ host_alias = @host_alias@ -build_alias = @build_alias@ +target = @target@ target_alias = @target_alias@ with_cross_host = @with_cross_host@ prefix = @prefix@ @@ -36,25 +39,25 @@ exec_prefix = @exec_prefix@ bindir = @bindir@ libdir = @libdir@ -ifeq ($(target_alias),$(host_alias)) -ifeq ($(build_alias),$(host_alias)) +ifeq ($(target),$(host)) +ifeq ($(build),$(host)) tooldir:=$(exec_prefix) else -tooldir:=$(exec_prefix)/$(target_alias) +tooldir:=$(exec_prefix)/$(host_alias) endif else -tooldir:=$(exec_prefix)/$(target_alias) +tooldir:=$(exec_prefix)/$(host_alias) endif datadir = @datadir@ infodir = @infodir@ includedir = @includedir@ -ifneq (,$(findstring cygwin,$(target_alias))) +ifneq (,$(findstring cygwin,$(host_alias))) inst_bindir:=$(tooldir)/bin inst_includedir:=$(tooldir)/include/mingw inst_libdir:=$(tooldir)/lib/mingw inst_docdir:=$(tooldir)/share/doc/mingw-runtime else -ifneq (,$(findstring mingw32ce,$(target_alias))) +ifneq (,$(findstring mingw32ce,$(host_alias))) inst_bindir:=$(tooldir)/bin inst_includedir:=$(tooldir)/include inst_libdir:=$(tooldir)/lib @@ -86,7 +89,7 @@ mkinstalldirs = $(SHELL) @MKINSTALLDIRS@ CC := @CC@ -ifneq (,$(findstring cygwin,$(target_alias))) +ifneq (,$(findstring cygwin,$(host_alias))) override CC := ${filter-out -L% -B%,${shell echo $(CC) | sed -e 's%\(-isystem\|-iwithprefixbefore\) *[^ ]*\( \|$$\)% %g'}} endif # FIXME: Which is it, CC or CC_FOR_TARGET? @@ -164,13 +167,18 @@ inst_libdir="$(inst_libdir)" \ inst_docdir="$(inst_docdir)" \ prefix="$(prefix)" \ + build="$(build)" \ + build_alias="$(build_alias)" \ + host="$(host)" \ + host_alias="$(host_alias)" \ + target="$(target)" \ target_alias="$(target_alias)" \ TAR="$(TAR)" \ TARFLAGS="$(TARFLAGS)" \ TARFILEEXT="$(TARFILEEXT)" CRT0S = CRT_noglob.o crtmt.o crtst.o -ifneq (,$(findstring mingw32ce,$(target_alias))) +ifneq (,$(findstring mingw32ce,$(host_alias))) CRT0S += crt3.o dllcrt3.o else CRT0S += crt1.o dllcrt1.o crt2.o dllcrt2.o CRT_fp8.o CRT_fp10.o txtmode.o binmode.o Modified: trunk/cegcc/src/mingw/mingwex/Makefile.in =================================================================== --- trunk/cegcc/src/mingw/mingwex/Makefile.in 2007-12-25 23:00:10 UTC (rev 1114) +++ trunk/cegcc/src/mingw/mingwex/Makefile.in 2007-12-25 23:03:53 UTC (rev 1115) @@ -6,14 +6,14 @@ srcdir = @srcdir@ objdir = . -target_alias = @target_alias@ +host_alias = @host_alias@ prefix = @prefix@ program_transform_name = @program_transform_name@ exec_prefix = @exec_prefix@ bindir = @bindir@ libdir = @libdir@ -tooldir = $(exec_prefix)/$(target_alias) +tooldir = $(exec_prefix)/$(host_alias) datadir = @datadir@ infodir = @infodir@ includedir = @includedir@ @@ -240,7 +240,7 @@ strtodg.o strtodnrp.o strtof.o strtopx.o sum.o ulp.o MATHCE_FLAGS= -ifneq (,$(findstring mingw32ce,$(target_alias))) +ifneq (,$(findstring mingw32ce,$(host_alias))) LIB_OBJS = $(WINCE_OBJS) $(MATHCE_OBJS) $(Q8_OBJS) $(STDIO_OBJS_CE) \ $(POSIX_OBJS) MATHCE_FLAGS=-D_IEEE_LIBM Modified: trunk/cegcc/src/mingw/profile/Makefile.in =================================================================== --- trunk/cegcc/src/mingw/profile/Makefile.in 2007-12-25 23:00:10 UTC (rev 1114) +++ trunk/cegcc/src/mingw/profile/Makefile.in 2007-12-25 23:03:53 UTC (rev 1115) @@ -7,14 +7,14 @@ srcdir = @srcdir@ objdir = . -target_alias = @target_alias@ +host_alias = @host_alias@ prefix = @prefix@ program_transform_name = @program_transform_name@ exec_prefix = @exec_prefix@ bindir = @bindir@ libdir = @libdir@ -tooldir = $(exec_prefix)/$(target_alias) +tooldir = $(exec_prefix)/$(host_alias) datadir = @datadir@ infodir = @infodir@ includedir = @includedir@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 23:00:17
|
Revision: 1114 http://cegcc.svn.sourceforge.net/cegcc/?rev=1114&view=rev Author: pedroalves Date: 2007-12-25 15:00:10 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * configure.in: Use $target_alias instead of $target. * configure: Regenerate. Modified Paths: -------------- trunk/cegcc/src/gcc/ChangeLog.ce trunk/cegcc/src/gcc/configure trunk/cegcc/src/gcc/configure.in Modified: trunk/cegcc/src/gcc/ChangeLog.ce =================================================================== --- trunk/cegcc/src/gcc/ChangeLog.ce 2007-12-25 20:41:57 UTC (rev 1113) +++ trunk/cegcc/src/gcc/ChangeLog.ce 2007-12-25 23:00:10 UTC (rev 1114) @@ -1,5 +1,10 @@ 2007-12-25 Pedro Alves <ped...@po...> + * configure.in: Use $target_alias instead of $target. + * configure: Regenerate. + +2007-12-25 Pedro Alves <ped...@po...> + * configure.in: Fix arm*-*-cegcc* and arm*-*-mingw32ce* addition, and collapse redundant CE targets support. * configure: Regenerate. Modified: trunk/cegcc/src/gcc/configure =================================================================== --- trunk/cegcc/src/gcc/configure 2007-12-25 20:41:57 UTC (rev 1113) +++ trunk/cegcc/src/gcc/configure 2007-12-25 23:00:10 UTC (rev 1114) @@ -3209,7 +3209,7 @@ *-cygwin*) FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup -L$$r/$(TARGET_SUBDIR)/winsup/cygwin -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/include -isystem $$s/winsup/cygwin/include -isystem $$s/winsup/w32api/include' ;; arm-wince-pe | arm-*-cegcc* | arm-*-mingw32ce*) - FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/${target}/include/w32api' ;; + FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/${target_alias}/include/w32api' ;; esac # If we're not building GCC, don't discard standard headers. Modified: trunk/cegcc/src/gcc/configure.in =================================================================== --- trunk/cegcc/src/gcc/configure.in 2007-12-25 20:41:57 UTC (rev 1113) +++ trunk/cegcc/src/gcc/configure.in 2007-12-25 23:00:10 UTC (rev 1114) @@ -1998,7 +1998,7 @@ *-cygwin*) FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup -L$$r/$(TARGET_SUBDIR)/winsup/cygwin -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/include -isystem $$s/winsup/cygwin/include -isystem $$s/winsup/w32api/include' ;; arm-wince-pe | arm-*-cegcc* | arm-*-mingw32ce*) - FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/${target}/include/w32api' ;; + FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/${target_alias}/include/w32api' ;; esac # If we're not building GCC, don't discard standard headers. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 20:42:00
|
Revision: 1113 http://cegcc.svn.sourceforge.net/cegcc/?rev=1113&view=rev Author: pedroalves Date: 2007-12-25 12:41:57 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * crossconfig.m4: Place *-*-mingw32* case below mingw32ce so it isn't picked up with arm-mingw32ce. Don't use arm-unknown-mingw32ce*, use arm*-*-mingw32ce* instead. Modified Paths: -------------- trunk/cegcc/src/gcc/libstdc++-v3/ChangeLog.ce trunk/cegcc/src/gcc/libstdc++-v3/crossconfig.m4 Modified: trunk/cegcc/src/gcc/libstdc++-v3/ChangeLog.ce =================================================================== --- trunk/cegcc/src/gcc/libstdc++-v3/ChangeLog.ce 2007-12-25 20:38:18 UTC (rev 1112) +++ trunk/cegcc/src/gcc/libstdc++-v3/ChangeLog.ce 2007-12-25 20:41:57 UTC (rev 1113) @@ -1,3 +1,9 @@ +2007-12-25 Pedro Alves <ped...@po...> + + * crossconfig.m4: Place *-*-mingw32* case below mingw32ce so + it isn't picked up with arm-mingw32ce. Don't use + arm-unknown-mingw32ce*, use arm*-*-mingw32ce* instead. + 2007-02-04 Pedro Alves <ped...@po...> * acinclude.m4 (GLIBCXX_ENABLE_C99]): Remove wcscoll and wcsxfrm. Modified: trunk/cegcc/src/gcc/libstdc++-v3/crossconfig.m4 =================================================================== --- trunk/cegcc/src/gcc/libstdc++-v3/crossconfig.m4 2007-12-25 20:38:18 UTC (rev 1112) +++ trunk/cegcc/src/gcc/libstdc++-v3/crossconfig.m4 2007-12-25 20:41:57 UTC (rev 1113) @@ -234,14 +234,7 @@ AC_DEFINE(HAVE_TANHL) fi ;; - *-mingw32*) - AC_CHECK_HEADERS([sys/types.h errno.h unistd.h signal.h locale.h float.h fcntl.h]) - GLIBCXX_CHECK_LINKER_FEATURES - GLIBCXX_CHECK_COMPLEX_MATH_SUPPORT - GLIBCXX_CHECK_ICONV_SUPPORT - GLIBCXX_CHECK_STDLIB_SUPPORT - ;; - arm-wince-pe | arm-*-cegcc* | arm-unknown-mingw32ce* ) + arm-wince-pe | arm*-*-cegcc* | arm*-*-mingw32ce*) AC_CHECK_HEADERS([sys/types.h locale.h float.h errno.h signal.h unistd.h fcntl.h]) # AC_DEFINE(_GLIBCXX_HAVE_SYS_IOCTL_H) # AC_DEFINE(HAVE_SYS_IOCTL_H) @@ -250,6 +243,13 @@ GLIBCXX_CHECK_STDLIB_SUPPORT #GLIBCXX_CHECK_WCHAR_T_SUPPORT ;; + *-mingw32*) + AC_CHECK_HEADERS([sys/types.h errno.h unistd.h signal.h locale.h float.h fcntl.h]) + GLIBCXX_CHECK_LINKER_FEATURES + GLIBCXX_CHECK_COMPLEX_MATH_SUPPORT + GLIBCXX_CHECK_ICONV_SUPPORT + GLIBCXX_CHECK_STDLIB_SUPPORT + ;; *-netbsd*) AC_CHECK_HEADERS([nan.h ieeefp.h endian.h sys/isa_defs.h \ machine/endian.h machine/param.h sys/machine.h sys/types.h \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 20:38:20
|
Revision: 1112 http://cegcc.svn.sourceforge.net/cegcc/?rev=1112&view=rev Author: pedroalves Date: 2007-12-25 12:38:18 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * config.gcc: Remove redundant arm-wince-mingw32ce,arm-*-mingw32ce and arm-wince-cegcc,arm-*-cegcc copies. Modified Paths: -------------- trunk/cegcc/src/gcc/gcc/ChangeLog.ce trunk/cegcc/src/gcc/gcc/config.gcc Modified: trunk/cegcc/src/gcc/gcc/ChangeLog.ce =================================================================== --- trunk/cegcc/src/gcc/gcc/ChangeLog.ce 2007-12-25 20:35:04 UTC (rev 1111) +++ trunk/cegcc/src/gcc/gcc/ChangeLog.ce 2007-12-25 20:38:18 UTC (rev 1112) @@ -1,3 +1,8 @@ +2007-12-25 Pedro Alves <ped...@po...> + + * config.gcc: Remove redundant arm-wince-mingw32ce,arm-*-mingw32ce + and arm-wince-cegcc,arm-*-cegcc copies. + 2007-11-29 Danny Backx <dan...@us...> * config/arm/mingw32.h, config/arm/wince-cegcc.h : Define Modified: trunk/cegcc/src/gcc/gcc/config.gcc =================================================================== --- trunk/cegcc/src/gcc/gcc/config.gcc 2007-12-25 20:35:04 UTC (rev 1111) +++ trunk/cegcc/src/gcc/gcc/config.gcc 2007-12-25 20:38:18 UTC (rev 1112) @@ -644,6 +644,21 @@ extra_parts="crtinit.o crtfini.o" use_fixproto=yes ;; +arm*-*-cegcc*) + tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h arm/wince-cegcc.h" + tmake_file="arm/t-arm arm/t-wince-pe arm/t-wince-cegcc" + extra_options="${extra_options} arm/pe.opt arm/cegcc.opt" + extra_objs="pe.o pe-stubs.o" + extra_gcc_objs=cegcc1.o + cxx_target_objs=pe-cxx.o + target_gtfiles="\$(srcdir)/config/arm/pe.c" + case ${enable_threads} in + "" | yes | win32) + thread_file='win32' + tmake_file="${tmake_file} arm/t-gthr-win32" + ;; + esac + ;; arm-*-coff* | armel-*-coff*) tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h" tmake_file="arm/t-arm arm/t-arm-coff" @@ -660,6 +675,21 @@ tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h" tmake_file="${tmake_file} arm/t-arm arm/t-strongarm-elf" ;; +arm*-*-mingw32ce*) + tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h arm/mingw32.h" + xm_file=arm/xm-mingw32.h + tmake_file="arm/t-arm arm/t-wince-pe arm/t-cygming arm/t-mingw32" + target_gtfiles="\$(srcdir)/config/arm/pe.c" + extra_options="${extra_options} arm/pe.opt arm/cygming.opt" + extra_objs="pe.o pe-stubs.o" + cxx_target_objs=pe-cxx.o + case ${enable_threads} in + "" | yes | win32) + thread_file='win32' + tmake_file="${tmake_file} arm/t-gthr-win32" + ;; + esac + ;; arm*-*-netbsdelf*) tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h arm/arm.h arm/netbsd-elf.h" tmake_file="${tmake_file} arm/t-arm arm/t-netbsd" @@ -742,36 +772,6 @@ ;; esac ;; -arm*-wince-cegcc*) - tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h arm/wince-cegcc.h" - tmake_file="arm/t-arm arm/t-wince-pe arm/t-wince-cegcc" - extra_options="${extra_options} arm/pe.opt arm/cegcc.opt" - extra_objs="pe.o pe-stubs.o" - extra_gcc_objs=cegcc1.o - cxx_target_objs=pe-cxx.o - target_gtfiles="\$(srcdir)/config/arm/pe.c" - case ${enable_threads} in - "" | yes | win32) - thread_file='win32' - tmake_file="${tmake_file} arm/t-gthr-win32" - ;; - esac - ;; -arm-*-cegcc*) - tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h arm/wince-cegcc.h" - tmake_file="arm/t-arm arm/t-wince-pe arm/t-wince-cegcc" - extra_options="${extra_options} arm/pe.opt arm/cegcc.opt" - extra_objs="pe.o pe-stubs.o" - extra_gcc_objs=cegcc1.o - cxx_target_objs=pe-cxx.o - target_gtfiles="\$(srcdir)/config/arm/pe.c" - case ${enable_threads} in - "" | yes | win32) - thread_file='win32' - tmake_file="${tmake_file} arm/t-gthr-win32" - ;; - esac - ;; arm-*-pe*) tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h" tmake_file="arm/t-arm arm/t-pe" @@ -1270,36 +1270,6 @@ thread_file='posix' fi ;; -arm-*-mingw32*) - tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h arm/mingw32.h" - xm_file=arm/xm-mingw32.h - tmake_file="arm/t-arm arm/t-wince-pe arm/t-cygming arm/t-mingw32" - target_gtfiles="\$(srcdir)/config/arm/pe.c" - extra_options="${extra_options} arm/pe.opt arm/cygming.opt" - extra_objs="pe.o pe-stubs.o" - cxx_target_objs=pe-cxx.o - case ${enable_threads} in - "" | yes | win32) - thread_file='win32' - tmake_file="${tmake_file} arm/t-gthr-win32" - ;; - esac - ;; -arm-wince-mingw32*) - tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h arm/mingw32.h" - xm_file=arm/xm-mingw32.h - tmake_file="arm/t-arm arm/t-wince-pe arm/t-cygming arm/t-mingw32" - target_gtfiles="\$(srcdir)/config/arm/pe.c" - extra_options="${extra_options} arm/pe.opt arm/cygming.opt" - extra_objs="pe.o pe-stubs.o" - cxx_target_objs=pe-cxx.o - case ${enable_threads} in - "" | yes | win32) - thread_file='win32' - tmake_file="${tmake_file} arm/t-gthr-win32" - ;; - esac - ;; i[34567]86-*-mingw32*) tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h" xm_file=i386/xm-mingw32.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 20:35:09
|
Revision: 1111 http://cegcc.svn.sourceforge.net/cegcc/?rev=1111&view=rev Author: pedroalves Date: 2007-12-25 12:35:04 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * configure.in: Fix arm*-*-cegcc* and arm*-*-mingw32ce* addition, and collapse redundant CE targets support. * configure: Regenerate. Modified Paths: -------------- trunk/cegcc/src/gcc/ChangeLog.ce trunk/cegcc/src/gcc/configure trunk/cegcc/src/gcc/configure.in Modified: trunk/cegcc/src/gcc/ChangeLog.ce =================================================================== --- trunk/cegcc/src/gcc/ChangeLog.ce 2007-12-25 20:28:58 UTC (rev 1110) +++ trunk/cegcc/src/gcc/ChangeLog.ce 2007-12-25 20:35:04 UTC (rev 1111) @@ -1,3 +1,9 @@ +2007-12-25 Pedro Alves <ped...@po...> + + * configure.in: Fix arm*-*-cegcc* and arm*-*-mingw32ce* addition, + and collapse redundant CE targets support. + * configure: Regenerate. + 2007-12-21 Danny Backx <dan...@us...> - * configure.in : Add arm-*-cegcc* and arm-*-mingw32ce* . + * configure.in: Add arm-*-cegcc* and arm-*-mingw32ce*. Modified: trunk/cegcc/src/gcc/configure =================================================================== --- trunk/cegcc/src/gcc/configure 2007-12-25 20:28:58 UTC (rev 1110) +++ trunk/cegcc/src/gcc/configure 2007-12-25 20:35:04 UTC (rev 1111) @@ -1241,7 +1241,7 @@ sh-*-linux*) noconfigdirs="$noconfigdirs ${libgcj} target-newlib target-libgloss" ;; - sh*-*-pe|mips*-*-pe|*arm-wince-pe|*arm-wince-cegcc) + sh*-*-pe | mips*-*-pe | arm*-wince-pe* | arm*-*-cegcc* | arm*-*-mingw32ce*) noconfigdirs="$noconfigdirs ${libgcj}" noconfigdirs="$noconfigdirs target-examples" noconfigdirs="$noconfigdirs target-libiberty texinfo send-pr" @@ -2733,7 +2733,7 @@ # ranlib from Darwin requires the -c flag to look at common symbols. extra_ranlibflags_for_target=" -c" ;; - mips*-*-pe | sh*-*-pe | *arm-wince-*) + mips*-*-pe | sh*-*-pe | arm-wince-pe | arm-*-cegcc* | arm-*-mingw32ce*) target_makefile_frag="config/mt-wince" ;; esac @@ -3208,10 +3208,8 @@ case "$target" in *-cygwin*) FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup -L$$r/$(TARGET_SUBDIR)/winsup/cygwin -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/include -isystem $$s/winsup/cygwin/include -isystem $$s/winsup/w32api/include' ;; - arm-wince-pe) - FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/arm-wince-pe/include/w32api' ;; - arm-wince-cegcc) - FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/arm-wince-cegcc/include/w32api' ;; + arm-wince-pe | arm-*-cegcc* | arm-*-mingw32ce*) + FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/${target}/include/w32api' ;; esac # If we're not building GCC, don't discard standard headers. @@ -3323,7 +3321,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3327: checking for $ac_word" >&5 +echo "configure:3325: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3363,7 +3361,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3367: checking for $ac_word" >&5 +echo "configure:3365: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_BISON'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3402,7 +3400,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3406: checking for $ac_word" >&5 +echo "configure:3404: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_M4'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3441,7 +3439,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3445: checking for $ac_word" >&5 +echo "configure:3443: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3481,7 +3479,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3485: checking for $ac_word" >&5 +echo "configure:3483: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_FLEX'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3520,7 +3518,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3524: checking for $ac_word" >&5 +echo "configure:3522: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_MAKEINFO'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3573,7 +3571,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3577: checking for $ac_word" >&5 +echo "configure:3575: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_EXPECT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3614,7 +3612,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3618: checking for $ac_word" >&5 +echo "configure:3616: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RUNTEST'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3662,7 +3660,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3666: checking for $ac_word" >&5 +echo "configure:3664: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3693,7 +3691,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3697: checking for $ac_word" >&5 +echo "configure:3695: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3737,7 +3735,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3741: checking for $ac_word" >&5 +echo "configure:3739: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3768,7 +3766,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3772: checking for $ac_word" >&5 +echo "configure:3770: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3812,7 +3810,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3816: checking for $ac_word" >&5 +echo "configure:3814: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3843,7 +3841,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3847: checking for $ac_word" >&5 +echo "configure:3845: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3887,7 +3885,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3891: checking for $ac_word" >&5 +echo "configure:3889: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3918,7 +3916,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3922: checking for $ac_word" >&5 +echo "configure:3920: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3962,7 +3960,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3966: checking for $ac_word" >&5 +echo "configure:3964: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LIPO'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3993,7 +3991,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3997: checking for $ac_word" >&5 +echo "configure:3995: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LIPO'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4037,7 +4035,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4041: checking for $ac_word" >&5 +echo "configure:4039: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4068,7 +4066,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4072: checking for $ac_word" >&5 +echo "configure:4070: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4112,7 +4110,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4116: checking for $ac_word" >&5 +echo "configure:4114: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4143,7 +4141,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4147: checking for $ac_word" >&5 +echo "configure:4145: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4182,7 +4180,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4186: checking for $ac_word" >&5 +echo "configure:4184: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4213,7 +4211,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4217: checking for $ac_word" >&5 +echo "configure:4215: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4252,7 +4250,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4256: checking for $ac_word" >&5 +echo "configure:4254: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4283,7 +4281,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4287: checking for $ac_word" >&5 +echo "configure:4285: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4327,7 +4325,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4331: checking for $ac_word" >&5 +echo "configure:4329: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_OBJCOPY'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4358,7 +4356,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4362: checking for $ac_word" >&5 +echo "configure:4360: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_OBJCOPY'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4402,7 +4400,7 @@ # Extract the first word of "${ncn_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4406: checking for $ac_word" >&5 +echo "configure:4404: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4433,7 +4431,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4437: checking for $ac_word" >&5 +echo "configure:4435: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4484,7 +4482,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4488: checking for $ac_word" >&5 +echo "configure:4486: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AR_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4515,7 +4513,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4519: checking for $ac_word" >&5 +echo "configure:4517: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AR_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4559,7 +4557,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4563: checking for $ac_word" >&5 +echo "configure:4561: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AS_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4590,7 +4588,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4594: checking for $ac_word" >&5 +echo "configure:4592: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AS_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4634,7 +4632,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4638: checking for $ac_word" >&5 +echo "configure:4636: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4665,7 +4663,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4669: checking for $ac_word" >&5 +echo "configure:4667: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4709,7 +4707,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4713: checking for $ac_word" >&5 +echo "configure:4711: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CXX_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4740,7 +4738,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4744: checking for $ac_word" >&5 +echo "configure:4742: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CXX_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4784,7 +4782,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4788: checking for $ac_word" >&5 +echo "configure:4786: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4815,7 +4813,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4819: checking for $ac_word" >&5 +echo "configure:4817: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4859,7 +4857,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4863: checking for $ac_word" >&5 +echo "configure:4861: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_GCC_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4890,7 +4888,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4894: checking for $ac_word" >&5 +echo "configure:4892: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_GCC_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4929,7 +4927,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4933: checking for $ac_word" >&5 +echo "configure:4931: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_GCJ_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4960,7 +4958,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4964: checking for $ac_word" >&5 +echo "configure:4962: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_GCJ_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5004,7 +5002,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5008: checking for $ac_word" >&5 +echo "configure:5006: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_GFORTRAN_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5035,7 +5033,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5039: checking for $ac_word" >&5 +echo "configure:5037: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_GFORTRAN_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5079,7 +5077,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5083: checking for $ac_word" >&5 +echo "configure:5081: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LD_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5110,7 +5108,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5114: checking for $ac_word" >&5 +echo "configure:5112: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LD_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5154,7 +5152,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5158: checking for $ac_word" >&5 +echo "configure:5156: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LIPO_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5185,7 +5183,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5189: checking for $ac_word" >&5 +echo "configure:5187: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LIPO_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5229,7 +5227,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5233: checking for $ac_word" >&5 +echo "configure:5231: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_NM_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5260,7 +5258,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5264: checking for $ac_word" >&5 +echo "configure:5262: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_NM_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5304,7 +5302,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5308: checking for $ac_word" >&5 +echo "configure:5306: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5335,7 +5333,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5339: checking for $ac_word" >&5 +echo "configure:5337: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5379,7 +5377,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5383: checking for $ac_word" >&5 +echo "configure:5381: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5410,7 +5408,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5414: checking for $ac_word" >&5 +echo "configure:5412: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5449,7 +5447,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5453: checking for $ac_word" >&5 +echo "configure:5451: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5480,7 +5478,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5484: checking for $ac_word" >&5 +echo "configure:5482: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5524,7 +5522,7 @@ # Extract the first word of "${ncn_target_tool_prefix}${ncn_progname}", so it can be a program name with args. set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5528: checking for $ac_word" >&5 +echo "configure:5526: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_WINDRES_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5555,7 +5553,7 @@ # Extract the first word of "${ncn_progname}", so it can be a program name with args. set dummy ${ncn_progname}; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5559: checking for $ac_word" >&5 +echo "configure:5557: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_WINDRES_FOR_TARGET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5598,7 +5596,7 @@ RAW_CXX_FOR_TARGET="$CXX_FOR_TARGET" echo $ac_n "checking where to find the target ar""... $ac_c" 1>&6 -echo "configure:5602: checking where to find the target ar" >&5 +echo "configure:5600: checking where to find the target ar" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5623,7 +5621,7 @@ fi fi echo $ac_n "checking where to find the target as""... $ac_c" 1>&6 -echo "configure:5627: checking where to find the target as" >&5 +echo "configure:5625: checking where to find the target as" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5648,7 +5646,7 @@ fi fi echo $ac_n "checking where to find the target cc""... $ac_c" 1>&6 -echo "configure:5652: checking where to find the target cc" >&5 +echo "configure:5650: checking where to find the target cc" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5673,7 +5671,7 @@ fi fi echo $ac_n "checking where to find the target c++""... $ac_c" 1>&6 -echo "configure:5677: checking where to find the target c++" >&5 +echo "configure:5675: checking where to find the target c++" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5701,7 +5699,7 @@ fi fi echo $ac_n "checking where to find the target c++ for libstdc++""... $ac_c" 1>&6 -echo "configure:5705: checking where to find the target c++ for libstdc++" >&5 +echo "configure:5703: checking where to find the target c++ for libstdc++" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5729,7 +5727,7 @@ fi fi echo $ac_n "checking where to find the target dlltool""... $ac_c" 1>&6 -echo "configure:5733: checking where to find the target dlltool" >&5 +echo "configure:5731: checking where to find the target dlltool" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5754,7 +5752,7 @@ fi fi echo $ac_n "checking where to find the target gcc""... $ac_c" 1>&6 -echo "configure:5758: checking where to find the target gcc" >&5 +echo "configure:5756: checking where to find the target gcc" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5779,7 +5777,7 @@ fi fi echo $ac_n "checking where to find the target gcj""... $ac_c" 1>&6 -echo "configure:5783: checking where to find the target gcj" >&5 +echo "configure:5781: checking where to find the target gcj" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5807,7 +5805,7 @@ fi fi echo $ac_n "checking where to find the target gfortran""... $ac_c" 1>&6 -echo "configure:5811: checking where to find the target gfortran" >&5 +echo "configure:5809: checking where to find the target gfortran" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5835,7 +5833,7 @@ fi fi echo $ac_n "checking where to find the target ld""... $ac_c" 1>&6 -echo "configure:5839: checking where to find the target ld" >&5 +echo "configure:5837: checking where to find the target ld" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5860,7 +5858,7 @@ fi fi echo $ac_n "checking where to find the target lipo""... $ac_c" 1>&6 -echo "configure:5864: checking where to find the target lipo" >&5 +echo "configure:5862: checking where to find the target lipo" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5875,7 +5873,7 @@ fi fi echo $ac_n "checking where to find the target nm""... $ac_c" 1>&6 -echo "configure:5879: checking where to find the target nm" >&5 +echo "configure:5877: checking where to find the target nm" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5900,7 +5898,7 @@ fi fi echo $ac_n "checking where to find the target objdump""... $ac_c" 1>&6 -echo "configure:5904: checking where to find the target objdump" >&5 +echo "configure:5902: checking where to find the target objdump" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5925,7 +5923,7 @@ fi fi echo $ac_n "checking where to find the target ranlib""... $ac_c" 1>&6 -echo "configure:5929: checking where to find the target ranlib" >&5 +echo "configure:5927: checking where to find the target ranlib" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5950,7 +5948,7 @@ fi fi echo $ac_n "checking where to find the target strip""... $ac_c" 1>&6 -echo "configure:5954: checking where to find the target strip" >&5 +echo "configure:5952: checking where to find the target strip" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -5975,7 +5973,7 @@ fi fi echo $ac_n "checking where to find the target windres""... $ac_c" 1>&6 -echo "configure:5979: checking where to find the target windres" >&5 +echo "configure:5977: checking where to find the target windres" >&5 if test "x${build}" != "x${host}" ; then # Canadian cross, just use what we found echo "$ac_t""pre-installed" 1>&6 @@ -6028,7 +6026,7 @@ echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 -echo "configure:6032: checking whether to enable maintainer-specific portions of Makefiles" >&5 +echo "configure:6030: checking whether to enable maintainer-specific portions of Makefiles" >&5 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then enableval="$enable_maintainer_mode" @@ -6075,7 +6073,7 @@ # gcc for stageN-gcc and stagePREV-gcc for stage(N-1). In case this is not # possible, however, we can resort to mv. echo $ac_n "checking if symbolic links between directories work""... $ac_c" 1>&6 -echo "configure:6079: checking if symbolic links between directories work" >&5 +echo "configure:6077: checking if symbolic links between directories work" >&5 if eval "test \"`echo '$''{'gcc_cv_prog_ln_s_dir'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else Modified: trunk/cegcc/src/gcc/configure.in =================================================================== --- trunk/cegcc/src/gcc/configure.in 2007-12-25 20:28:58 UTC (rev 1110) +++ trunk/cegcc/src/gcc/configure.in 2007-12-25 20:35:04 UTC (rev 1111) @@ -449,7 +449,7 @@ sh-*-linux*) noconfigdirs="$noconfigdirs ${libgcj} target-newlib target-libgloss" ;; - sh*-*-pe | mips*-*-pe | *arm-wince-pe | arm-*-cegcc* | arm-*-mingw32ce*) + sh*-*-pe | mips*-*-pe | arm*-wince-pe* | arm*-*-cegcc* | arm*-*-mingw32ce*) noconfigdirs="$noconfigdirs ${libgcj}" noconfigdirs="$noconfigdirs target-examples" noconfigdirs="$noconfigdirs target-libiberty texinfo send-pr" @@ -1528,7 +1528,7 @@ # ranlib from Darwin requires the -c flag to look at common symbols. extra_ranlibflags_for_target=" -c" ;; - mips*-*-pe | sh*-*-pe | arm-*-cegcc* | arm-*-mingw32ce*) + mips*-*-pe | sh*-*-pe | arm-wince-pe | arm-*-cegcc* | arm-*-mingw32ce*) target_makefile_frag="config/mt-wince" ;; esac @@ -1997,12 +1997,8 @@ case "$target" in *-cygwin*) FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup -L$$r/$(TARGET_SUBDIR)/winsup/cygwin -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/include -isystem $$s/winsup/cygwin/include -isystem $$s/winsup/w32api/include' ;; - arm-wince-pe) - FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/arm-wince-pe/include/w32api' ;; - arm-wince-cegcc*) - FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/arm-wince-cegcc/include/w32api' ;; - arm-*-cegcc*) - FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/arm-unknown-cegcc/include/w32api' ;; + arm-wince-pe | arm-*-cegcc* | arm-*-mingw32ce*) + FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/${target}/include/w32api' ;; esac # If we're not building GCC, don't discard standard headers. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 20:28:59
|
Revision: 1110 http://cegcc.svn.sourceforge.net/cegcc/?rev=1110&view=rev Author: pedroalves Date: 2007-12-25 12:28:58 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * configure.tgt: Add arm*-*-cegcc* target. Modified Paths: -------------- trunk/cegcc/src/binutils/ld/ChangeLog.ce trunk/cegcc/src/binutils/ld/configure.tgt Modified: trunk/cegcc/src/binutils/ld/ChangeLog.ce =================================================================== --- trunk/cegcc/src/binutils/ld/ChangeLog.ce 2007-12-25 20:28:11 UTC (rev 1109) +++ trunk/cegcc/src/binutils/ld/ChangeLog.ce 2007-12-25 20:28:58 UTC (rev 1110) @@ -1,3 +1,7 @@ +2007-12-25 Pedro Alves <ped...@po...> + + * configure.tgt: Add arm*-*-cegcc* target. + 2007-12-17 Pedro Alves <ped...@po...> * configure.tgt: Add arm-*-mingw32ce* target. Modified: trunk/cegcc/src/binutils/ld/configure.tgt =================================================================== --- trunk/cegcc/src/binutils/ld/configure.tgt 2007-12-25 20:28:11 UTC (rev 1109) +++ trunk/cegcc/src/binutils/ld/configure.tgt 2007-12-25 20:28:58 UTC (rev 1110) @@ -37,7 +37,7 @@ arc-*-elf*) targ_emul=arcelf ;; arm-epoc-pe) targ_emul=arm_epoc_pe ; targ_extra_ofiles="deffilep.o pe-dll.o" ;; -arm-wince-* | arm-*-wince | arm-*-mingw32ce*) +arm-wince-* | arm-*-wince | arm*-*-mingw32ce* | arm*-*-cegcc*) targ_emul=arm_wince_pe ; targ_extra_ofiles="deffilep.o pe-dll.o" ;; arm-*-pe) targ_emul=armpe ; targ_extra_ofiles="deffilep.o pe-dll.o" ;; arm-*-aout | armel-*-aout) targ_emul=armaoutl ;; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 20:28:12
|
Revision: 1109 http://cegcc.svn.sourceforge.net/cegcc/?rev=1109&view=rev Author: pedroalves Date: 2007-12-25 12:28:11 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * configure.tgt: Add arm*-*-cegcc* target. Modified Paths: -------------- trunk/cegcc/src/binutils/gas/ChangeLog.ce trunk/cegcc/src/binutils/gas/configure.tgt Modified: trunk/cegcc/src/binutils/gas/ChangeLog.ce =================================================================== --- trunk/cegcc/src/binutils/gas/ChangeLog.ce 2007-12-25 20:27:22 UTC (rev 1108) +++ trunk/cegcc/src/binutils/gas/ChangeLog.ce 2007-12-25 20:28:11 UTC (rev 1109) @@ -1,3 +1,7 @@ +2007-12-25 Pedro Alves <ped...@po...> + + * configure.tgt: Add arm*-*-cegcc* target. + 2007-12-17 Pedro Alves <ped...@po...> * configure.tgt: Add arm-*-mingw32ce* target. Modified: trunk/cegcc/src/binutils/gas/configure.tgt =================================================================== --- trunk/cegcc/src/binutils/gas/configure.tgt 2007-12-25 20:27:22 UTC (rev 1108) +++ trunk/cegcc/src/binutils/gas/configure.tgt 2007-12-25 20:28:11 UTC (rev 1109) @@ -116,7 +116,7 @@ arm-*-*n*bsd*) fmt=aout em=nbsd ;; arm-*-nto*) fmt=elf ;; arm-epoc-pe | thumb-epoc-pe) fmt=coff em=epoc-pe ;; - arm-wince-* | arm-*-wince | arm-*-mingw32ce*) + arm-wince-* | arm-*-wince | arm*-*-mingw32ce* | arm*-*-cegcc*) fmt=coff em=wince-pe ;; arm-*-pe | thumb-*-pe) fmt=coff em=pe ;; arm-*-riscix*) fmt=aout em=riscix ;; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 20:27:23
|
Revision: 1108 http://cegcc.svn.sourceforge.net/cegcc/?rev=1108&view=rev Author: pedroalves Date: 2007-12-25 12:27:22 -0800 (Tue, 25 Dec 2007) Log Message: ----------- Ooops, forgot to add this. Added Paths: ----------- trunk/cegcc/src/binutils/binutils/ChangeLog.ce Added: trunk/cegcc/src/binutils/binutils/ChangeLog.ce =================================================================== --- trunk/cegcc/src/binutils/binutils/ChangeLog.ce (rev 0) +++ trunk/cegcc/src/binutils/binutils/ChangeLog.ce 2007-12-25 20:27:22 UTC (rev 1108) @@ -0,0 +1,4 @@ +2007-12-25 Pedro Alves <ped...@po...> + + * configure.in: Add arm*-*-cegcc* and arm*-*-mingw32ce* targets. + * configure: Regenerate. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 20:26:48
|
Revision: 1107 http://cegcc.svn.sourceforge.net/cegcc/?rev=1107&view=rev Author: pedroalves Date: 2007-12-25 12:26:47 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * configure.in: Add arm*-*-cegcc* and arm*-*-mingw32ce* targets. * configure: Regenerate. Modified Paths: -------------- trunk/cegcc/src/binutils/binutils/configure trunk/cegcc/src/binutils/binutils/configure.in Modified: trunk/cegcc/src/binutils/binutils/configure =================================================================== --- trunk/cegcc/src/binutils/binutils/configure 2007-12-25 20:25:59 UTC (rev 1106) +++ trunk/cegcc/src/binutils/binutils/configure 2007-12-25 20:26:47 UTC (rev 1107) @@ -8430,7 +8430,7 @@ DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM" BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)' ;; - arm-wince-* | arm-*-wince) + arm-wince-* | arm-*-wince | arm*-*-cegcc* | arm*-*-mingw32ce*) BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)' DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_WINCE -DDLLTOOL_ARM" BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)' @@ -8635,10 +8635,9 @@ # 1. Remove the extension, and $U if already installed. ac_i=`echo "$ac_i" | sed 's/\$U\././;s/\.o$//;s/\.obj$//'` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" - ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' + # 2. Add them. + ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" + ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' done LIBOBJS=$ac_libobjs Modified: trunk/cegcc/src/binutils/binutils/configure.in =================================================================== --- trunk/cegcc/src/binutils/binutils/configure.in 2007-12-25 20:25:59 UTC (rev 1106) +++ trunk/cegcc/src/binutils/binutils/configure.in 2007-12-25 20:26:47 UTC (rev 1107) @@ -242,7 +242,7 @@ DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM" BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)' ;; - arm-wince-* | arm-*-wince) + arm-wince-* | arm-*-wince | arm*-*-cegcc* | arm*-*-mingw32ce*) BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)' DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_WINCE -DDLLTOOL_ARM" BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 20:26:00
|
Revision: 1106 http://cegcc.svn.sourceforge.net/cegcc/?rev=1106&view=rev Author: pedroalves Date: 2007-12-25 12:25:59 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * config.bfd: Add arm*-*-cegcc* target. Modified Paths: -------------- trunk/cegcc/src/binutils/bfd/ChangeLog.ce trunk/cegcc/src/binutils/bfd/config.bfd Modified: trunk/cegcc/src/binutils/bfd/ChangeLog.ce =================================================================== --- trunk/cegcc/src/binutils/bfd/ChangeLog.ce 2007-12-25 20:18:36 UTC (rev 1105) +++ trunk/cegcc/src/binutils/bfd/ChangeLog.ce 2007-12-25 20:25:59 UTC (rev 1106) @@ -1,3 +1,7 @@ +2007-12-25 Pedro Alves <ped...@po...> + + * config.bfd: Add arm*-*-cegcc* target. + 2007-12-17 Pedro Alves <ped...@po...> * config.bfd: Add arm-*-mingw32ce* target. Modified: trunk/cegcc/src/binutils/bfd/config.bfd =================================================================== --- trunk/cegcc/src/binutils/bfd/config.bfd 2007-12-25 20:18:36 UTC (rev 1105) +++ trunk/cegcc/src/binutils/bfd/config.bfd 2007-12-25 20:25:59 UTC (rev 1106) @@ -224,7 +224,7 @@ targ_underscore=no targ_cflags=-DARM_COFF_BUGFIX ;; - arm-wince-* | arm-*-wince | arm-*-mingw32ce*) + arm-wince-* | arm-*-wince | arm*-*-mingw32ce* | arm*-*-cegcc*) targ_defvec=arm_wince_pe_little_vec targ_selvecs="arm_wince_pe_little_vec arm_wince_pe_big_vec arm_wince_pei_little_vec arm_wince_pei_big_vec" targ_underscore=no This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 20:18:37
|
Revision: 1105 http://cegcc.svn.sourceforge.net/cegcc/?rev=1105&view=rev Author: pedroalves Date: 2007-12-25 12:18:36 -0800 (Tue, 25 Dec 2007) Log Message: ----------- 2007-12-25 Pedro Alves <ped...@po...> * build-mingw32ce.sh: Display bootstrapgcc option on `usage`. Move option reporting below option processing. Exit immediatelly if an invalid component is specified. Actually allow specifying a list of components. Modified Paths: -------------- trunk/cegcc/src/ChangeLog trunk/cegcc/src/build-mingw32ce.sh Modified: trunk/cegcc/src/ChangeLog =================================================================== --- trunk/cegcc/src/ChangeLog 2007-12-25 19:59:08 UTC (rev 1104) +++ trunk/cegcc/src/ChangeLog 2007-12-25 20:18:36 UTC (rev 1105) @@ -1,3 +1,10 @@ +2007-12-25 Pedro Alves <ped...@po...> + + * build-mingw32ce.sh: Display bootstrapgcc option on `usage`. + Move option reporting below option processing. Exit immediatelly + if an invalid component is specified. Actually allow specifying a + list of components. + 2007-12-24 Pedro Alves <ped...@po...> * build-mingw32ce.sh (usage): Make it run with sh. Modified: trunk/cegcc/src/build-mingw32ce.sh =================================================================== --- trunk/cegcc/src/build-mingw32ce.sh 2007-12-25 19:59:08 UTC (rev 1104) +++ trunk/cegcc/src/build-mingw32ce.sh 2007-12-25 20:18:36 UTC (rev 1105) @@ -22,8 +22,8 @@ --prefix=PREFIX install toolchain in PREFIX [$ac_default_prefix] --components=LIST specify which components to build - valid components are: all,binutils,gcc,w32api,mingw, - gdb,gdbstub,docs and profile + valid components are: all,binutils,bootstrapgcc, + gcc,w32api,mingw, gdb,gdbstub,docs and profile [all] Report bugs to <ceg...@li...>. @@ -130,23 +130,6 @@ exit 1 fi -# Report about options. -echo The following components will be built: ${components} - -export TARGET="arm-unknown-mingw32ce" -# export TARGET="arm-wince-mingw32ce" -export BUILD=`sh ${BASE_DIRECTORY}/gcc/config.guess` -export PATH=${PREFIX}/bin:${PATH} - -echo "Building mingw32ce:" -echo "source: ${BASE_DIRECTORY}" -echo "building in: ${BUILD_DIR}" -echo "prefix: ${PREFIX}" -echo "components: ${components}" - -mkdir -p ${BUILD_DIR} || exit 1 -mkdir -p ${PREFIX} || exit 1 - build_binutils() { echo "" @@ -397,21 +380,39 @@ build_gdbstub } +split_components=`echo "${components}" | sed -e 's/,/ /g'` + # check for valid options before trying to build them all. -eval "set -- $components" +eval "set -- $split_components" while [ -n "$1" ]; do case $1 in binutils | bootstrapgcc | w32api | \ mingw | gcc | gdb | gdbstub | \ docs | profile | all) ;; - *) echo "Please enter a valid build option." ;; + *) + echo "Please enter a valid build option." + exit 1 + ;; esac shift done +export TARGET="arm-unknown-mingw32ce" +export BUILD=`sh ${BASE_DIRECTORY}/gcc/config.guess` +export PATH=${PREFIX}/bin:${PATH} + +echo "Building mingw32ce:" +echo "source: ${BASE_DIRECTORY}" +echo "building in: ${BUILD_DIR}" +echo "prefix: ${PREFIX}" +echo "components: ${components}" + +mkdir -p ${BUILD_DIR} || exit 1 +mkdir -p ${PREFIX} || exit 1 + # now actually try to build them. -eval "set -- $components" +eval "set -- $split_components" while [ -n "$1" ]; do case $1 in binutils) build_binutils ;; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 19:59:13
|
Revision: 1104 http://cegcc.svn.sourceforge.net/cegcc/?rev=1104&view=rev Author: pedroalves Date: 2007-12-25 11:59:08 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * Makefile.in: s/wince/mingw32ce/g from host matchings. * mingwexlibce/Makefile.in: Likewise. Modified Paths: -------------- trunk/cegcc/src/mingw/ChangeLog.mingw32ce trunk/cegcc/src/mingw/Makefile.in trunk/cegcc/src/mingw/mingwex/Makefile.in Modified: trunk/cegcc/src/mingw/ChangeLog.mingw32ce =================================================================== --- trunk/cegcc/src/mingw/ChangeLog.mingw32ce 2007-12-25 19:56:09 UTC (rev 1103) +++ trunk/cegcc/src/mingw/ChangeLog.mingw32ce 2007-12-25 19:59:08 UTC (rev 1104) @@ -1,3 +1,8 @@ +2007-12-25 Pedro Alves <ped...@po...> + + * Makefile.in: s/wince/mingw32ce/g from host matchings. + * mingwexlibce/Makefile.in: Likewise. + 2007-10-16 Erik van Pienbroek <er...@va...> * include/sys/time.h (gettimeofday): Expose on __COREDLL__. Modified: trunk/cegcc/src/mingw/Makefile.in =================================================================== --- trunk/cegcc/src/mingw/Makefile.in 2007-12-25 19:56:09 UTC (rev 1103) +++ trunk/cegcc/src/mingw/Makefile.in 2007-12-25 19:59:08 UTC (rev 1104) @@ -54,7 +54,7 @@ inst_libdir:=$(tooldir)/lib/mingw inst_docdir:=$(tooldir)/share/doc/mingw-runtime else -ifneq (,$(findstring wince,$(target_alias))) +ifneq (,$(findstring mingw32ce,$(target_alias))) inst_bindir:=$(tooldir)/bin inst_includedir:=$(tooldir)/include inst_libdir:=$(tooldir)/lib @@ -170,7 +170,7 @@ TARFILEEXT="$(TARFILEEXT)" CRT0S = CRT_noglob.o crtmt.o crtst.o -ifneq (,$(findstring wince,$(target_alias))) +ifneq (,$(findstring mingw32ce,$(target_alias))) CRT0S += crt3.o dllcrt3.o else CRT0S += crt1.o dllcrt1.o crt2.o dllcrt2.o CRT_fp8.o CRT_fp10.o txtmode.o binmode.o @@ -180,7 +180,7 @@ crtst.o mthr_stub.o \ pseudo-reloc.o pseudo-reloc-list.o cpu_features.o -ifneq (,$(findstring wince,$(target_alias))) +ifneq (,$(findstring mingw32ce,$(target_alias))) MINGW_OBJS += winmain_ce.o abort.o atexit.o assert.o else MINGW_OBJS += main.o CRT_fp10.o txtmode.o @@ -189,7 +189,7 @@ MOLD_OBJS = isascii.o iscsym.o iscsymf.o toascii.o \ strcasecmp.o strncasecmp.o wcscmpi.o -ifneq (,$(findstring wince,$(target_alias))) +ifneq (,$(findstring mingw32ce,$(target_alias))) LIBS = libcoredll.a \ libmingw32.a \ libceoldname.a \ Modified: trunk/cegcc/src/mingw/mingwex/Makefile.in =================================================================== --- trunk/cegcc/src/mingw/mingwex/Makefile.in 2007-12-25 19:56:09 UTC (rev 1103) +++ trunk/cegcc/src/mingw/mingwex/Makefile.in 2007-12-25 19:59:08 UTC (rev 1104) @@ -240,7 +240,7 @@ strtodg.o strtodnrp.o strtof.o strtopx.o sum.o ulp.o MATHCE_FLAGS= -ifneq (,$(findstring wince,$(target_alias))) +ifneq (,$(findstring mingw32ce,$(target_alias))) LIB_OBJS = $(WINCE_OBJS) $(MATHCE_OBJS) $(Q8_OBJS) $(STDIO_OBJS_CE) \ $(POSIX_OBJS) MATHCE_FLAGS=-D_IEEE_LIBM This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ped...@us...> - 2007-12-25 19:56:15
|
Revision: 1103 http://cegcc.svn.sourceforge.net/cegcc/?rev=1103&view=rev Author: pedroalves Date: 2007-12-25 11:56:09 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * configure.in (SUBDIRS): Set depending on host, and pass it to the Makefile. * Makefile.in (SUBDIRS): Get from configure. * libce/Makefile.in: Hardcode CE conditions. * configure: Regenerate. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/Makefile.in trunk/cegcc/src/w32api/configure trunk/cegcc/src/w32api/configure.in trunk/cegcc/src/w32api/libce/Makefile.in Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2007-12-25 19:52:07 UTC (rev 1102) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2007-12-25 19:56:09 UTC (rev 1103) @@ -1,3 +1,11 @@ +2007-12-25 Pedro Alves <ped...@po...> + + * configure.in (SUBDIRS): Set depending on host, and pass it to + the Makefile. + * Makefile.in (SUBDIRS): Get from configure. + * libce/Makefile.in: Hardcode CE conditions. + * configure: Regenerate. + 2007-12-21 Pavel Chernikov <pch...@gm...> * include/winuser.h (VK_APP1, VK_APP2, VK_APP3, VK_APP4) Modified: trunk/cegcc/src/w32api/Makefile.in =================================================================== --- trunk/cegcc/src/w32api/Makefile.in 2007-12-25 19:52:07 UTC (rev 1102) +++ trunk/cegcc/src/w32api/Makefile.in 2007-12-25 19:56:09 UTC (rev 1103) @@ -14,6 +14,8 @@ srcdir = @srcdir@ VPATH = @srcdir@ +SUBDIRS = @SUBDIRS@ + build_alias = @build@ host_alias = @host@ target_alias = @target@ @@ -87,12 +89,6 @@ # end config section -ifneq (,$(findstring wince,$(target_alias))) - SUBDIRS = libce -else - SUBDIRS = lib -endif - PACKAGE = w32api VERSION = 3.8 CYGRELEASE = 1 Modified: trunk/cegcc/src/w32api/configure =================================================================== --- trunk/cegcc/src/w32api/configure 2007-12-25 19:52:07 UTC (rev 1102) +++ trunk/cegcc/src/w32api/configure 2007-12-25 19:56:09 UTC (rev 1103) @@ -272,7 +272,7 @@ PACKAGE_BUGREPORT= ac_unique_file="lib/scrnsave.c" -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CC ac_ct_CC CFLAGS with_cross_host AR ac_ct_AR AS ac_ct_AS RANLIB ac_ct_RANLIB LD ac_ct_LD DLLTOOL ac_ct_DLLTOOL WINDRES ac_ct_WINDRES BUILDENV LIBOBJS LTLIBOBJS' +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CC ac_ct_CC CFLAGS with_cross_host AR ac_ct_AR AS ac_ct_AS RANLIB ac_ct_RANLIB LD ac_ct_LD DLLTOOL ac_ct_DLLTOOL WINDRES ac_ct_WINDRES BUILDENV SUBDIRS LIBOBJS LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. @@ -1998,6 +1998,16 @@ fi +case "${host}" in + *-mingw32ce* | *-cegcc*) + SUBDIRS="libce" + ;; + *) + SUBDIRS="lib" + ;; +esac + + ac_config_files="$ac_config_files Makefile lib/Makefile lib/ddk/Makefile lib/directx/Makefile libce/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -2670,6 +2680,7 @@ s,@WINDRES@,$WINDRES,;t t s,@ac_ct_WINDRES@,$ac_ct_WINDRES,;t t s,@BUILDENV@,$BUILDENV,;t t +s,@SUBDIRS@,$SUBDIRS,;t t s,@LIBOBJS@,$LIBOBJS,;t t s,@LTLIBOBJS@,$LTLIBOBJS,;t t CEOF Modified: trunk/cegcc/src/w32api/configure.in =================================================================== --- trunk/cegcc/src/w32api/configure.in 2007-12-25 19:52:07 UTC (rev 1102) +++ trunk/cegcc/src/w32api/configure.in 2007-12-25 19:56:09 UTC (rev 1103) @@ -50,4 +50,14 @@ fi AC_SUBST(BUILDENV) +case "${host}" in + *-mingw32ce* | *-cegcc*) + SUBDIRS="libce" + ;; + *) + SUBDIRS="lib" + ;; +esac +AC_SUBST(SUBDIRS) + AC_OUTPUT(Makefile lib/Makefile lib/ddk/Makefile lib/directx/Makefile libce/Makefile) Modified: trunk/cegcc/src/w32api/libce/Makefile.in =================================================================== --- trunk/cegcc/src/w32api/libce/Makefile.in 2007-12-25 19:52:07 UTC (rev 1102) +++ trunk/cegcc/src/w32api/libce/Makefile.in 2007-12-25 19:56:09 UTC (rev 1103) @@ -39,18 +39,8 @@ endif datadir = @datadir@ infodir = @infodir@ -ifneq (,$(findstring cygwin,$(target_alias))) -inst_includedir:=$(tooldir)/include/w32api -inst_libdir:=$(tooldir)/lib/w32api -else -ifneq (,$(findstring wince,$(target_alias))) inst_includedir:=$(tooldir)/include inst_libdir:=$(tooldir)/lib -else -inst_includedir:=$(includedir) -inst_libdir:=$(libdir) -endif -endif INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |