Errors when compiling with Winelib
Author | Topic: Errors when compiling with Winelib |
---|---|
Apprentice
Member # 9013
|
written Tuesday, June 19 2007 11:45
Profile
Sorry, I accidentally created a new topic here instead of appending it to a thread. Could someone delete this? [ Tuesday, June 19, 2007 11:47: Message edited by: Miramor ] Posts: 43 | Registered: Tuesday, June 19 2007 07:00 |
Apprentice
Member # 9013
|
written Tuesday, June 19 2007 18:49
Profile
Yep it was something obvious, make is using winegcc instead of wineg++. And the settings in Makefile look right, wineg++ for CPP files... How do I change this? [ Tuesday, June 19, 2007 18:51: Message edited by: Miramor ] Posts: 43 | Registered: Tuesday, June 19 2007 07:00 |
Apprentice
Member # 4231
|
written Wednesday, June 20 2007 19:58
Profile
As far as make knows, townout.c is a c file, not a cpp file. [ Wednesday, June 20, 2007 19:58: Message edited by: Octavo ] -------------------- Lifetime Spiderweb Gamer and Fan of Classic Style Graphics Posts: 42 | Registered: Saturday, April 10 2004 07:00 |
Apprentice
Member # 9013
|
written Thursday, June 21 2007 06:37
Profile
Hmm, apparently I ran winemaker in the wrong directory. Damn clumsy fingers. So now I get this: make: *** No rule to make target `windows.so', needed by `all'. Stop. ... Apparently this is an issue with the contents of the makefile. Anyone know what I have to put in there to get it to work? Posts: 43 | Registered: Tuesday, June 19 2007 07:00 |
Apprentice
Member # 4231
|
written Thursday, June 21 2007 06:42
Profile
That's not exactly a problem with your Makefile. What that means is it can't find the shared object (like a DLL on Windows) that is called windows.so. I'm guessing that that's something winelib is supposed to be providing? -------------------- Lifetime Spiderweb Gamer and Fan of Classic Style Graphics Posts: 42 | Registered: Saturday, April 10 2004 07:00 |
Apprentice
Member # 9013
|
written Saturday, June 23 2007 12:27
Profile
Wine does not and should not provide "windows.so". I've also gotten the same message for "blades.so"... Posts: 43 | Registered: Tuesday, June 19 2007 07:00 |
Apprentice
Member # 4231
|
written Saturday, June 23 2007 12:48
Profile
Ah, I see. Then perhaps it is a file that is supposed to be compiled out of your files and indeed you do need a target for it, but I don't know what you'd need to do to make it. -------------------- Lifetime Spiderweb Gamer and Fan of Classic Style Graphics Posts: 42 | Registered: Saturday, April 10 2004 07:00 |