[Cegcc-devel] Error compiling mingw32ce 0.55 under Cygwin

2010-04-29 Thread InfoMail InfoMail
I run (in Cygwin 1.7): sh ./src/scripts/build-mingw32ce.sh But after ten minutes i got the following error: ldemul.o: In function 'ldemul_hll': /opt/cegcc-0.55/src/binutils/ld/ldemul.c:41: undefined reference to '_ld_arm_wince_pe_emulation' pe-dll.o: In function 'pe_create_import_fixup': /opt/c

[Cegcc-devel] Cortex A8 support

2010-04-27 Thread InfoMail InfoMail
Hi all, I'm trying to compile my library for Cortex A8, using the last mingw32ce toolchain. I use this compiler options:* -mcpu=cortex-a8 -mtune=cortex-a8 -msoft-float -mfloat-abi=softfp -mfpu=neon -Wa,-mcpu=cortex-a8 -Wa,-mfpu=neon -mlittle-endian* but i got the following errors: *Assembler mess

[Cegcc-devel] Remove libgcc_s_sjlj-1 (mingw32ce)

2010-04-26 Thread InfoMail InfoMail
Hello guys, I've compiled my library using the new Mingw32ce toolchain (gcc 4.4.0 based). Unlike the old one (gcc 4.1.2 based), now my library depends on libgcc_s_sjlj-1.dll. Why? Is there a way (e.g. compiler/link switches) to remove such dependencies? Here's objdump result: ./lib/wince/arm11/sr

[Cegcc-devel] mingw32ce 0.55 for cygwin

2009-05-25 Thread InfoMail InfoMail
Is there a version of the new mingw32ce (based on gcc 4.4.x) available for cygwin? Could someone please upload such builds on the official sf.net website ? Thanks in advance. -- Register Now for Creativity and Technology

[Cegcc-devel] mingw32ce iwmmx undefined references

2008-05-23 Thread InfoMail InfoMail
Hello, I'd like to report that inside mmintrin.h, there is the following line: typedef unsigned long long __m64, __int64; but it seems that __int64 is already defined, so in order to compile my program i had to remove __int64 as follow: typedef unsigned long long __m64; Is there something i mi

[Cegcc-devel] Import library created by mingw32ce error

2008-02-13 Thread InfoMail InfoMail
I've compiled and created a DLL library using mingw32ce and the following linker command: $(LD) -shared -Wl,--output-def,myLib.def,--out-implib,myLib.lib -o mylib.dll$(OBJECTS) where LD is arm-wince-mingw32ce-g++ Creation of the dll, def and lib seem ok. But if i use that .lib file to compile a

[Cegcc-devel] Closed source project

2008-02-04 Thread InfoMail InfoMail
Hi all, I'm wondering if it would be possible to compile and link a closed source project with mingw32ce. In the detail, does that compiler statically link some GPL snippets inside produced binaries ? Thx in advance! - This S