search for: libwinecrt0

Displaying 12 results from an estimated 12 matches for "libwinecrt0".

2009 Feb 14
3
Building wine with profile generation
Hi all, I'm trying to build wine with the following command: Code: ./configure CFLAGS="-O2 -fprofile-generate" --prefix=/home/ema/winepf As I have a lot of these errors: Code: gcc -O2 -fprofile-generate -o sfnt2fnt sfnt2fnt.o -L../libs/wine -lwine ../libs/port/libwine_port.a -lfreetype -lz -Wl,--rpath,\$ORIGIN/../libs/wine /usr/bin/ld: sfnt2fnt: hidden symbol
2010 Mar 04
0
Compiling wine in Solaris.
...ools/winebuild --sysroot=../.. -shared ./acledit.spec main.o -o acledit.dll.so -lkernel32 ../../libs/port/libwine_port.a -lsocket -lnsl acledit.dll-y4I0zn.map:3: undefined symbol `A0x1000' referenced in expression Archive member included because of file (symbol) ../../dlls/winecrt0/libwinecrt0.a(dll_entry.o) acledit.dll-kPWtOd.spec.o (__wine_spec_dll_entry) ../../dlls/winecrt0/libwinecrt0.a(init.o) ../../dlls/winecrt0/libwinecrt0.a(dll_entry.o) (__wine_spec_init_state) ../../dlls/winecrt0/libwinecrt0.a(stub.o)...
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. Is there a way to build and use this same application in 64 bit Linux.
2008 Jun 14
1
Porting with winelib - undefined reference to `WinMain'
Hello! I'm trying to port zCPU emulator (http://www.wiremod.com/forum/cpu-tutorials-programs/2956-zcpu-emulator.html) to Linux with winelib. This app is mainly console, but can draw some stuff using SDL. The problem is: compiles fine but when linking I get Code: /usr/lib/wine/libwinecrt0.a(exe_main.o): In function `main': exe_main.c:(.text+0x9d): undefined reference to `WinMain' Yes, I've googled but none of found solutions hepled. Source at current state can be got here: http://silentman.org.ua/build.tar.gz (I use build.sh for compiling)
2005 Sep 11
1
Compile cvs version
...g -gstabs+ -Wpointer-arith -g -O2 -o activeds.dll.dbg.o activeds.dll.dbg.c ../../tools/winegcc/winegcc -B../../tools/winebuild -shared ./activeds.spec activeds_main.o activeds.dll.dbg.o -o activeds.dll.so -L../../dlls -L../../libs/wine -lwine -L../../libs/port -lwine_port ../../dlls/libwinecrt0.a(stub.o)(.text+0x2c): In function `__wine_spec_unimplemented_stub': /privat/emulator/wine/dlls/winecrt0/stub.c:32: undefined reference to `RaiseException' collect2: ld returned 1 exit status winegcc: gcc failed. make[2]: *** [activeds.dll.so] Error 2 make[2]: Leaving directory `/backup/p...
2006 Mar 06
1
Wins Installation problem on solairs x86 version 5.10
...ration; ignored stub.c: In function `__wine_spec_unimplemented_stub': stub.c:36: warning: visibility attribute not supported in this configuration; ignored Undefined first referenced symbol in file GetStartupInfoA ../../dlls/libwinecrt0.a(exe_main.o) GetCommandLineA ../../dlls/libwinecrt0.a(exe_main.o) WinMain ../../dlls/libwinecrt0.a(exe_main.o) ld: warning: Symbol referencing errors In file included from x11drv.h:30, from bitblt.c:33: /usr/openwin/include/X11/Xlib....
2009 Feb 21
2
Compiling Winelib application under x86_64
...turn 0; } I generated a makefile using winemaker running make I get wineg++ -c -mno-cygwin -o test.o test.cpp wineg++ -mwindows -mno-cygwin -o test.exe.so test.o -lodbc32 -lole32 -loleaut32 -lwinspool -luuid ld: Relocatable linking with relocations from format elf32-i386 (/usr/lib/wine/libwinecrt0.a(exe_entry.o)) to format elf64-x86-64 (test.UzYhKg.o) is not supported winebuild: ld -r failed with status 256 winegcc: winebuild failed make: *** [test.exe.so] Error 2 uname -a returns: Linux host1 2.6.18-92.el5 #1 SMP Tue Feb 20 18:51:06 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux The distribution...
2006 Jul 14
0
ld -r failed with status 256
...100 using wineg++. I have managed that all sources are compiled without complain, but finally ld aborts with an error message about i386 and x86-64 architecures. Any idea, what I should do? thx, teb $wineg++ *.cpp ld: Relocatable linking with relocations from format elf32-i386 (/usr/lib/wine/libwinecrt0.a(exe_entry.o)) to format elf64-x86-64 (a.EjEWYl.o) is not supported winebuild: ld -r failed with status 256 winegcc: winebuild failed.
2005 Oct 30
2
Compile cvs version fails
...abs+ -Wdeclaration-after-statement -Wpointer-arith -g -O2 -o activeds_main.o activeds_main.c ../../tools/winegcc/winegcc -B../../tools/winebuild -shared ./activeds.spec activeds_main.o -o activeds.dll.so -L../../dlls -L../../libs/wine -lwine -L../../libs/port -lwine_port ../../dlls/libwinecrt0.a(stub.o): In function `__wine_spec_unimplemented_stub': /privat/emulator/wine/dlls/winecrt0/stub.c:32: undefined reference to `RaiseException' collect2: ld gab 1 als Ende-Status zur?ck winegcc: gcc failed. make[2]: *** [activeds.dll.so] Fehler 2 make[2]: Leaving directory `/backup/privat...
2009 Sep 03
4
build wine dll problem
...what i am doing: MyWinDll.spec Code: 2 stdcall MyWinFunc (int) MyProxyWinFunc MyWin.c Code: #include <windef.h> short MyProxyWinFunc(int *i) { return 5; } shell Code: winemaker --nosource-fix --dll --single-target MyWin --nomfc . make I get the following error: Code: /usr/lib/wine/libwinecrt0.a(exe_main.o): In function `main': (.text+0xa9): undefined reference to `WinMain' Why is it asking for a main function, i am trying to build a dll...
2010 Jun 09
2
Help with simple dll wrapper around linux so
...these all in a directory called test. I type: Code: winemaker . --nosource-fix --nomfc -iadd --single-target WinAdd -L"." (ive already compiled to libadd.so for linux), and then run Code: make And i get: Code: winegcc -o WinAdd.so add.o WinAdd.o -L. -ladd /usr/lib/wine/libwinecrt0.a(exe_main.o): In function `main': (.text+0xa0): undefined reference to `WinMain' collect2: ld returned 1 exit status winegcc: i486-linux-gnu-gcc failed make: *** [WinAdd.so] Error 2 Can anyone please help? wine version is 1.1.42 and im on ubuntu THanks :D
2007 Mar 19
4
exec: 29: /usr/bin/wine: not found
Hi, I?ve installed wine on Ubuntu 6.10 64bit using the following guide : http://www.ubuntuforums.org/showthread.php?t=185557 but, when I type winecfg in Terminal I get the following error : exec: 29: /usr/bin/wine: not found Dunno if it may help, but here?s a terminal shot of when wine was getting installed. matt@ubuntu:~/Desktop$ dpkg -x lib libartsc0_1.3.2-3_amd64.deb