Displaying 4 results from an estimated 4 matches for "wingcc".
Did you mean:
winegcc
2011 Aug 11
2
error message of wingcc
When I try to build my existing application using winegcc, I get the following error message.
/usr/bin/ld: Relocatable linking with relocations from format elf32-i386 (/usr/local/lib/wine/libwinecrt0.a(exe_entry.o)) to format elf64-x86-64 (vida_codecs.a8MfIW.o) is not supported
winebuild: /usr/bin/ld -r failed with status 256
This application can be built from a 32 bit OS Linux without problem.
2011 Sep 02
7
I want to contribute code for wine and become a developer.
I am porting wine to MIPS and do some job in winebuild/ntdll/ etc.
I am using qemu to translate x86 instruction and direct the win32 api call from the qemu to wine in MIPS version.
Wine on mips is running now! I want to contribute the modification to wine .
How can I do that?
2006 Mar 02
1
Error while compiling code using wineg++ / winegcc
...32=int -D__int64=long long -c -o test-9pH6Aj.o -v test.cpp
-isystem/opt/cfw/wine/include/wine/windows
winegcc: -fshort-wchar failed.
I can see a lot of compile flags/options. I want to be able to
enable/disable these options. Or if there is some other way to be able
to compile the code using wingcc, pleae tell me. The code works well on
windows. I even managed to compile it using gcc, but it resulted in
coredump.
thanks!!
Vikas Gera
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.winehq.org/pipermail/wine-users/attachments/20060303/29f4df83/attac...
2010 Jun 16
1
The __WINE__ macro does not identify the Wine platform
...dows version of MinGW (version 4.5.0),
and the above gcc --version result shows that is the version
being used under wine.
I have looked in the installed header files for wine-1.2-rc3, and I can find
no mention of __WINE__. Furthermore, it appears from
http://linux.die.net/man/1/winegcc that only wingcc sets __WINE__. However,
I don't want to cross-compile for the Wine platform under Linux. Instead, my
approach is to use Windows versions of MinGW and CMake to build _AND_ test
applications and libraries directly under wine.
So it appears for now I must set __WINE__ explicitly, e.g.,
wine at r...