Hi,
see:

http://cegcc.sourceforge.net/docs/dll.html

http://cegcc.sourceforge.net/docs/index.html

Hope it helps,
Best regards,
Jacek.

On Tue, Dec 28, 2010 at 3:50 PM, "Stefan Partheymüller"
<stefan-partheymuel...@gmx.de> wrote:
> Hi,
>
> thanks for this information.
> How could I link this library statically? Or how is the static library
> called?
> I only have a "libstdc++.a" and a "libstdc++.dll.a" in my lib subfolder. I
> tried both, but I still need the DLL.
>
> I noticed, that there is a "libstdc++-6.dll.stripped" in my lib/device
> directory.
> What is that for? Is this a static or a dynamic library? Or is it somthing
> else?
>
> Regards
> Stefan Partheymüller
>
> -------- Original-Nachricht --------
> Datum: Tue, 28 Dec 2010 15:15:51 +0100
> Von: Danny Backx <danny.ba...@scarlet.be>
> An: "Jacek M. Holeczek" <jacek.m.holec...@gmail.com>
> CC: "Stefan Partheymüller" <stefan-partheymuel...@gmx.de>,
> cegcc-devel@lists.sourceforge.net
> Betreff: Re: [Cegcc-devel] CeGCC for Windows (without bein forced to use
> cygwin)
>
> With mingw32ce you will not need the cegcc library, but if you use C++
> then you do need the libstdc++ either in DLL or in statically linked
> form.
>
> Danny
>
> On Tue, 2010-12-28 at 15:05 +0100, Jacek M. Holeczek wrote:
>> Hi,
>> sorry, but if you use "mingw32ce-g++" compiler, you should NOT need
>> "libstdc++-6.dll".
>> Only if you use "cegcc-g++" to compile/link you will need this dll.
>> Jacek.
>>
>> On Tue, Dec 28, 2010 at 2:12 PM, "Stefan Partheymüller"
>> <stefan-partheymuel...@gmx.de> wrote:
>> > Hi,
>> >
>> > sorry, I was obviously too dumb :-)
>> > Now it works awesome.
>> > I didn't know, that I need the libstdc++-6.dll to run the programm.
>> > anyway, now it works perfect, thank you so much.
>> >
>> > But I can swear, in the first tests the compiler didn't know where to
>> > search
>> > for the libraries and the include files. Anyway, now it works!
>> >
>> > Regards
>> > Stefan Partheymüller
>> >
>> > -------- Original-Nachricht --------
>> > Datum: Tue, 28 Dec 2010 14:03:13 +0100
>> >
>> > Von: "Sébastien Lorquet" <squa...@gmail.com>
>> > An: "Stefan Partheymüller" <stefan-partheymuel...@gmx.de>
>> > CC: cegcc-devel@lists.sourceforge.net
>> > Betreff: Re: [Cegcc-devel] CeGCC for Windows (without bein forced to use
>> > cygwin)
>> >
>> > Hello,
>> >
>> > Sorry, this is beyond my abilities.
>> >
>> > In my tests, I was using code::blocks and I did not encounter this
>> > problem
>> > :(
>> >
>> > Regards
>> > Sebastien
>> >
>> > On Tue, Dec 28, 2010 at 1:54 PM, "Stefan Partheymüller"
>> > <stefan-partheymuel...@gmx.de> wrote:
>> >>
>> >> -------- Original-Nachricht --------
>> >> Datum: Tue, 28 Dec 2010 13:50:42 +0100
>> >> Von: "Stefan Partheymüller" <stefan-partheymuel...@gmx.de>
>> >>
>> >> An: "Sébastien Lorquet" <squa...@gmail.com>
>> >> Betreff: Re: [Cegcc-devel] CeGCC for Windows (without bein forced to
>> >> use
>> >> cygwin)
>> >>
>> >> Hi,
>> >>
>> >> now I tried to compile some code for WinCE with you binary snapshot.
>> >> It works only when I'm using a Makefile, which is compiling step by
>> >> step
>> >> (assemble, compile, link)
>> >>
>> >> First I tried to compile with the following command:
>> >> arm-mingw32ce-g++ test.cpp -o test.exe
>> >>
>> >> It compiles fine, but the executable cannot be executed by WinCE ("The
>> >> file
>> >> 'test' cannot be opened. Either it is not ....")
>> >> I also tried to link the libcoredll.a to ensure that nothing is
>> >> missing,
>> >> but
>> >> the result is the same as before.
>> >>
>> >> But as I used my Makefile everything is fine. I need neither any
>> >> additional
>> >> DLL-Files nor to set the Include Path. Well, the Include Path is
>> >> recognized
>> >> correctly without Makefile, too.
>> >> Though I have to set the Lib Path and link the coredll library.
>> >> So, this is not really a problem, but it's quite confusing. Why does it
>> >> work
>> >> when compiling step by step, but not when passing all necessary
>> >> parameters
>> >> to arm-mingw32ce-g++?
>> >>
>> >>
>> >> Here is my Makefile (works):
>> >>
>> >>
>> >>
>> >> ---------------------------------------------------------------------------------------BEGIN
>> >>
>> >> NAME:= test
>> >> SRC := test.cpp
>> >>
>> >> BASN := $(basename $(SRC))
>> >>
>> >> LDFLAGS := -LE:\progs\mingw32ce\arm-mingw32ce\lib -lcoredll
>> >> CFLAGS := -S
>> >>
>> >> GCC := arm-mingw32ce-gcc
>> >> G++ := arm-mingw32ce-g++
>> >> AS := arm-mingw32ce-as
>> >> LD := arm-mingw32ce-ld
>> >>
>> >> $(NAME).exe: $(BASN).o
>> >> $(LD) $(BASN).o -o $(NAME).exe $(LDFLAGS)
>> >>
>> >> $(BASN).o: $(BASN).S
>> >> $(AS) -o $(BASN).o $(BASN).S
>> >>
>> >> $(BASN).S: $(SRC)
>> >> $(G++) $(CFLAGS) -o $(BASN).S $(SRC)
>> >>
>> >>
>> >>
>> >> ------------------------------------------------------------------------------------------END
>> >>
>> >> Regards
>> >> Stefan Partheymüller
>> >>
>> >> -------- Original-Nachricht --------
>> >> Datum: Tue, 28 Dec 2010 11:06:21 +0100
>> >> Von: "Sébastien Lorquet" <squa...@gmail.com>
>> >> An: cegcc-devel@lists.sourceforge.net
>> >> CC: "Stefan Partheymüller" <stefan-partheymuel...@gmx.de>
>> >> Betreff: Re: [Cegcc-devel] CeGCC for Windows (without bein forced to
>> >> use
>> >> cygwin)
>> >>
>> >> Hi,
>> >>
>> >> Okay, maybe that's an EOL problem.
>> >> but the patch is so simple you could apply it by hand.
>> >>
>> >> I created the --gmp and --mpfr options, then passed the values to
>> >> --with-gmp in gcc 's ./configure
>> >>
>> >> you could hardcode that for a quick test.
>> >> BTW, I attached the script I used there, that you can also find (until
>> >> I format my server again...) here:
>> >> So you want the file:
>> >>
>> >>
>> >> http://www.unsads.com/~squalyl/cegcc/cegcc-src/cegcc/src/scripts/build-mingw32ce.sh
>> >> The binary snapshot is there:
>> >> http://www.unsads.com/~squalyl/cegcc/mingw32ce-build-mingw.zip
>> >>
>> >> Sebastien
>> >>
>> >> On Tue, Dec 28, 2010 at 10:21 AM, "Stefan Partheymüller"
>> >> <stefan-partheymuel...@gmx.de> wrote:
>> >>> Hi, I tried to build CeGCC for Windows like explained, but I have a
>> >>> problem
>> >>> with patching the build script. When I try to patch it, with the patch
>> >>> tool
>> >>> like this:
>> >>>
>> >>> patch -p0 -i patch.diff
>> >>>
>> >>> The following errors occur:
>> >>>
>> >>> patching file build-mingw32ce.sh
>> >>> Hunk #1 FAILED at 49.
>> >>> Hunk #2 FAILED at 97.
>> >>> Hunk #3 FAILED at 179.
>> >>> Hunk #4 FAILED at 209.
>> >>> Hunk #5 FAILED at 314.
>> >>> Hunk #6 FAILED at 333.
>> >>> 6 out of 6 hunks FAILED -- saving rejects to file
>> >>> build-mingw32ce.sh.rej
>> >>>
>> >>> Sorry I don't know much about this tool...
>> >>>
>> >>>
>> >>> --
>> >>> NEU: FreePhone - kostenlos mobil telefonieren und surfen!
>> >>> Jetzt informieren: http://www.gmx.net/de/go/freephone
>> >>>
>> >>>
>> >>>
>> >>> ------------------------------------------------------------------------------
>> >>> Learn how Oracle Real Application Clusters (RAC) One Node allows
>> >>> customers
>> >>> to consolidate database storage, standardize their database
>> >>> environment,
>> >>> and,
>> >>> should the need arise, upgrade to a full multi-node Oracle RAC
>> >>> database
>> >>> without downtime or disruption
>> >>> http://p.sf.net/sfu/oracle-sfdevnl
>> >>> _______________________________________________
>> >>> Cegcc-devel mailing list
>> >>> Cegcc-devel@lists.sourceforge.net
>> >>> https://lists.sourceforge.net/lists/listinfo/cegcc-devel
>> >>>
>> >>>
>> >>
>> >>
>> >>
>> >> --
>> >> NEU: FreePhone - kostenlos mobil telefonieren und surfen!
>> >> Jetzt informieren: http://www.gmx.net/de/go/freephone
>> >>
>> >>
>> >> --
>> >> GMX DSL Doppel-Flat ab 19,99 Euro/mtl.! Jetzt auch mit
>> >> gratis Notebook-Flat! http://portal.gmx.net/de/go/dsl
>> >>
>> >>
>> >> ------------------------------------------------------------------------------
>> >> Learn how Oracle Real Application Clusters (RAC) One Node allows
>> >> customers
>> >> to consolidate database storage, standardize their database
>> >> environment,
>> >> and,
>> >> should the need arise, upgrade to a full multi-node Oracle RAC database
>> >> without downtime or disruption
>> >> http://p.sf.net/sfu/oracle-sfdevnl
>> >> _______________________________________________
>> >> Cegcc-devel mailing list
>> >> Cegcc-devel@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/cegcc-devel
>> >>
>> >>
>> >
>> >
>> >
>> > --
>> > NEU: FreePhone - kostenlos mobil telefonieren und surfen!
>> > Jetzt informieren: http://www.gmx.net/de/go/freephone
>> >
>> > ------------------------------------------------------------------------------
>> > Learn how Oracle Real Application Clusters (RAC) One Node allows
>> > customers
>> > to consolidate database storage, standardize their database environment,
>> > and,
>> > should the need arise, upgrade to a full multi-node Oracle RAC database
>> > without downtime or disruption
>> > http://p.sf.net/sfu/oracle-sfdevnl
>> > _______________________________________________
>> > Cegcc-devel mailing list
>> > Cegcc-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/cegcc-devel
>> >
>> >
>>
>>
>> ------------------------------------------------------------------------------
>> Learn how Oracle Real Application Clusters (RAC) One Node allows customers
>> to consolidate database storage, standardize their database environment,
>> and,
>> should the need arise, upgrade to a full multi-node Oracle RAC database
>> without downtime or disruption
>> http://p.sf.net/sfu/oracle-sfdevnl
>> _______________________________________________
>> Cegcc-devel mailing list
>> Cegcc-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/cegcc-devel
>
> --
> Danny Backx ; danny.backx - at - scarlet.be ; http://danny.backx.info
>
>
>
>
> --
> GMX DSL Doppel-Flat ab 19,99 Euro/mtl.! Jetzt auch mit
> gratis Notebook-Flat! http://portal.gmx.net/de/go/dsl
>
>
> --
> NEU: FreePhone - kostenlos mobil telefonieren und surfen!
> Jetzt informieren: http://www.gmx.net/de/go/freephone
> ------------------------------------------------------------------------------
> Learn how Oracle Real Application Clusters (RAC) One Node allows customers
> to consolidate database storage, standardize their database environment,
> and,
> should the need arise, upgrade to a full multi-node Oracle RAC database
> without downtime or disruption
> http://p.sf.net/sfu/oracle-sfdevnl
> _______________________________________________
> Cegcc-devel mailing list
> Cegcc-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/cegcc-devel
>
>

------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to