similar to: Compiling and linking QT project with Wine libraries

Displaying 20 results from an estimated 5000 matches similar to: "Compiling and linking QT project with Wine libraries"

2009 Feb 21
2
Compiling Winelib application under x86_64
Hi All I'm trying to compile the following program int main() { return 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
2011 Jun 21
2
Using winemaker / building wine DLLs
Hi. I'm not sure if this is the correct place for this question, or if the wine-devel list is more appropriate; please let me know if I should ask over there. I'm trying to build, using winemaker/winegcc/etc, a DLL for use with a Windows binary. This is a somewhat unusual case, in that this library is actually explicitly being written for a Windows binary that will run in Linux (I'm
2009 Dec 14
2
FlexBuilder plugin (JAVA) with native windows dll calling
Hi, I'm developping an Adobe FlexBuilder plugin (it's an Eclipse plugin). This plugin is written in Java. But it use windows dlls that was created for some features of the plugin. And I try to port my plugin on MacOSX. I've one question about wine : - In java I use System.LoadLibrary to load my dlls, does Wine can help me for loading theses dlls under MacOSX? Does wine can map these
2009 May 24
1
directions for porting my own code using 3rd party dll
Hi I have a c++ project Im working on under windows. it uses a 3rd party library (ie, i have headers and dll). mostly for development I'd like to be able to work on it under linux. and i thought that should be easy with wine. but now i read through the Winelib User's Guide and Im somewhat lost. its talking about winemaker and bad cases of filenames, generating makefiles and stuff. Im
2006 Mar 02
1
Error while compiling code using wineg++ / winegcc
Hi!! I am not able to compile a test program on solaris using winegcc tool. Can anybody help? Here's the program source code: // file test.cpp #include <stdio.h> #include <windows.h> int main () { SYSTEMTIME lpSystemTime; GetSystemTime(&lpSystemTime); printf("Today is: %d/%d/%d\n", lpSystemTime.wYear,
2008 Jan 24
2
Problems when compiling MFC application
<table cellspacing='0' cellpadding='0' border='0' ><tr><td style="font: inherit;"><font size="2">Dear All,</font><br> &nbsp;<br> <font size="2">&nbsp;&nbsp;&nbsp;&nbsp; This is my first post on the wine organisation mailing lists, i would like to inform all of you i am using
2010 Oct 24
3
winegcc on non-x86 system
yes, winegcc generates x86 output. I ever conpiled it on a non-x86 box. I did not remember whether the generated winegcc generated native code or x86 code. e.g, how winegcc generates powerpc code.
2010 Oct 24
4
winegcc and g++
I failed to link a .so built with g++ to wine. winegcc can not link g++ .o files to .so file. how can I use c++ with wine?
2010 Dec 02
4
Why msvcrt generates errors ?
Hello winers I'm doing a little excersice. A minimal source #include <string> int main(void) { return 0; } So, if i compile that with: g++ -I/usr/include/wine/msvcrt -c myfile.cpp I get errors like: In file included from /usr/include/c++/4.4/bits/postypes.h:42, from /usr/include/c++/4.4/bits/char_traits.h:42, from
2012 Apr 15
6
Can not uninstall / remove Wine 1.5.0
I have been trying to upgrade to 1.5.2 from 1.5.0 I can't seem to get rid of it. I have Removed it via Software Center, Synaptics Package Manager, and some command lines. Killed orphan files. typing; wine --version give; wine-1.5.0 Please help me remove.. I need to install 1.5.2 Note: Im a novice.. so might have to spell out what to type in command line. Thanks
2010 Jul 29
2
Include Wine in my project and using WinGDI under Linux.
Hy guys, I make my application for Windows/Linux/Mac and I have problem with next using: I'm include in my project next headers: #ifndef WNT #include </tmp/include/windef.h> #include </tmp/include/winbase.h> #include </tmp/include/wingdi.h> #include </tmp/include/winuser.h> #include </tmp/include/winerror.h> #endif And It's cool working with libEMF.so, but
2009 May 28
1
how to compile
<BEGINNER i am begginer> i try to use winegcc all link, include, lib paths are ok but i got linker error Main-z6Kx8u.o : (.data.DW.ref.__gxx_personality_v0[DW.ref.__gxx_personality_v0]+0x0): undefined reference to `__gxx_personality_v0' and i don't know to which library it belong
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
2009 Dec 15
1
Strange Winsock problem
Hello, I try to port a small program (Windows resouces manipulation tool) on MacOSX, but I've a strange compilation problem : Code: wineg++ -c -I. -I/usr/local/include/wine -I/usr/local/include/wine/windows -o ExeIconManipulation.o ExeIconManipulation.cpp /usr/include/sys/_select.h:47: error: declaration of C function ?int select(int, fd_set*, fd_set*, fd_set*, timeval*)? conflicts
2008 Jul 03
1
windows program compiled using wineg++ looks for wine binary
Hi ! I have compiled a sample Windows VC++ win 32 based HelloWorld application using the winelib. I used wineg++ to compile the application in Linux. When I try to execute the application it looks for wine. When I set the path to the wine /bin directory the application works properly. Is it possible that after compiling using wineg++ the program will run in any platform even if wine is not
2002 Mar 21
4
ExitThread won't.
Okay, so with complete lack of any other ideas, I tried to figure out what was wrong with my app (Proxomitron), which is leaving unkillable processes around. So I went into ExitThread, and added something like: DPRINTF("%08lx:Exiting thread...(%d)\n", GetCurrentThreadId(),getpid()); exit(code); right at the top of the function. And, lo and behold, the processId matches the
2009 Sep 03
2
wine advantages over mingw
What are the advantages of using winegcc over the mingw cross compiler? Also, what are the differences in the header files / libs supplied with each ? I have an app (http://www.autohotkey.com/forum/viewtopic.php?t=46546) cross compiling with mingw using codeblocks, and I have it working under winelib side by side native linux code. I wanted to translate it so it would compile with winegcc so
2007 Jun 17
2
Sending changes to winelib ?
I have a little program coded for windows, and I want to compile it using winegcc. Unfortunately, some functions are not implemented in winelib, and I have to tweak some files. So, How do I submit those changes ? I found nothing on the WineHQ site. SO, if someone knows where to redirect me, I can do it alone! ___________________________________________________________________________
2009 Sep 03
4
build wine dll problem
I am trying to follow the instructions here (http://www.winehq.org/docs/winelib-guide/bindlls-wrapper) to build a dll with wine that i can load dynamically in a windows wine application. this is 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
2011 Jan 16
5
Winelib Calling POSIX function from Windows application
Suppose that I have Windows application using Code: LoadLibrary followed by Code: GetProcAddress It should be possible to load a library implemented in terms of POSIX function but I do not understand how. Should I load the dll.so file generated by winegcc or do i need a plain .dll file?[/code]