View previous topic :: View next topic |
Author |
Message |
JetBird
Joined: 15 Aug 2007 Posts: 12
|
Posted: Tue Feb 10, 2009 11:08 am Post subject: compiling win32.lib |
|
|
Hello!
I have a problem while trying to compile win32.lib (I have installed mingw distro and got GNU Make in it); so, I've done:
Code: |
svn co http://....bidings/win32 win32
cd win32
mingw32-make
|
and it tells me:
Code: |
wtypes.d(14): module uuid cannot read file 'win32\uuid.d'
|
How to solve it?[/code] |
|
Back to top |
|
|
ws
Joined: 03 Mar 2009 Posts: 1
|
Posted: Tue Mar 03, 2009 7:50 am Post subject: |
|
|
Try using the -I.. option, which tells dmd to look for import from parent directory. |
|
Back to top |
|
|
Jerm
Joined: 18 Sep 2010 Posts: 1
|
Posted: Sun Sep 19, 2010 12:00 am Post subject: |
|
|
I had the same problem, and I managed to fix it (or at least work around it).
First I renamed uuid.di to uuid.d, but then I got another error:
Code: | Error: multiple definition of dinput8: _GUID_SysKeyboard and uuid: _GUID_SysKeyboard |
Then I deleted dinput8.d and dinput8.def from the directx directory and it compiled fine.
Perhaps someone more experienced than me can recommend a better way to fix this for those that still want DirectInput 8 (it's only my first day using D ). |
|
Back to top |
|
|
|