Re: [Cegcc-devel] cegcc 4.4 failure :-(

2009-02-16 Thread Pedro Alves
On Monday 16 February 2009 22:55:27, Vincent R. wrote: > I have also noticed that you have hardcoded exception mode in t-wince-pe : > > ... > # This should go somewhere else. > # We are using SjLj EH. > EH_MODEL = sjlj > > > Wouldn't be possible to do what I suggest in a previous email and use t

Re: [Cegcc-devel] cegcc 4.4 failure :-(

2009-02-16 Thread Pedro Alves
A Monday 16 February 2009 22:55:27, Vincent R. escreveu: > in mingw32.g/wince-pe.h/wince-cegcc.h, you should replace LIBGCC_SPEC by > REAL_LIBGCC_SPEC > because it seems to be the new prefered define. Thanks, I'll take a look at that. -- Pedro Alves -

Re: [Cegcc-devel] cegcc 4.4 failure :-(

2009-02-16 Thread Pedro Alves
On Monday 16 February 2009 21:48:20, Vincent R. wrote: > actually there are some issue with Pedro's patch, I don't know why but > libstdc++-v3/configure.host > is not patched : E, because I changed it? > >  mingw32ce*) >     os_include_dir="os/mingw32"  !! Should be os/mingw32ce >     er

Re: [Cegcc-devel] cegcc 4.4 failure :-(

2009-02-16 Thread Vincent R.
Pedro, I have also noticed that you have hardcoded exception mode in t-wince-pe : ... # This should go somewhere else. # We are using SjLj EH. EH_MODEL = sjlj Wouldn't be possible to do what I suggest in a previous email and use the same logic as mingw ? > config.gcc: > > ... > + if test

Re: [Cegcc-devel] cegcc 4.4 failure :-(

2009-02-16 Thread Vincent R.
On Mon, 16 Feb 2009 21:56:06 +0100, Danny Backx wrote: > I'm getting quite far. No time today though to figure out what's wrong. > This is, I believe, with just Pedro's stuff, based on gcc-trunk as of a > couple of hours ago. > > Danny > > gmake[3]: Entering directory > `/home/danny/src/ce

Re: [Cegcc-devel] cegcc 4.4 failure :-(

2009-02-16 Thread Danny Backx
I'm getting quite far. No time today though to figure out what's wrong. This is, I believe, with just Pedro's stuff, based on gcc-trunk as of a couple of hours ago. Danny gmake[3]: Entering directory `/home/danny/src/cegcc/svn.sf.net/cegcc/trunk/cegcc/src/build-4.4/gcc/arm-mingw32ce/libst

Re: [Cegcc-devel] cegcc 4.4 failure :-(

2009-02-16 Thread Pedro Alves
On Monday 16 February 2009 17:47:09, Vincent R. wrote: > When I try your patch from cegcc svn I have the following message : > > make AS="arm-mingw32ce-as" CC="gcc" CFLAGS="-O2 -g " CXXFLAGS="@CXXFLAGS@ ^^^ Wrong gcc here. Hmmm, did I forget that w32api does n

Re: [Cegcc-devel] cegcc 4.4 failure :-(

2009-02-16 Thread Vincent R.
When I try your patch from cegcc svn I have the following message : make AS="arm-mingw32ce-as" CC="gcc" CFLAGS="-O2 -g " CXXFLAGS="@CXXFLAGS@ " CPPFLAGS=" " AR="arm-mingw32ce-ar" RANLIB="arm-mingw32ce-ranlib" LD="arm-mingw32ce-ld" DLLTOOL="arm-mingw32ce-dlltool" exec_prefix="/opt/mingw32ce-4.4.

[Cegcc-devel] [ PATCH ] V2 - Ddraw

2009-02-16 Thread Ryan Raasch
Hello, I have a made another stab at the ddraw inclusion with references here http://msdn.microsoft.com/en-us/library/aa913258.aspx The #defines, however, are not in the ddraw.h header file. They are not publicly displayed. Thanks, Ryan >From c11517e355b40018fcedf9d49f77514b857d44c9 Mon Sep

Re: [Cegcc-devel] cegcc 4.4 failure :-(

2009-02-16 Thread Pedro Alves
Uurgh, I totally missed this message before posting the other one... I've posted an updated patch against trunk at cegcc-de...@. It should fix the alignment issue. ".align FOO" on ARM coff works like on elf, that is, FOO is power 2 aligment... I've also fixed a couple of __dllimport issues on A

[Cegcc-devel] [PATCH] -- strmif.h fixes

2009-02-16 Thread Ryan Raasch
Hello, This patch adds the more interfaces needed for directshow. References found below. http://msdn.microsoft.com/en-us/library/aa926221.aspx http://msdn.microsoft.com/en-us/library/aa926767.aspx Thanks, Ryan >From 655b835043221f328a18fb00df70e26bc5059b59 Mon Sep 17 00:00:00 2001 From: Rya