Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libudev and UINT error in compiling on windows #431

Closed
Mas313 opened this issue Dec 8, 2022 · 1 comment
Closed

libudev and UINT error in compiling on windows #431

Mas313 opened this issue Dec 8, 2022 · 1 comment

Comments

@Mas313
Copy link

Mas313 commented Dec 8, 2022

I got error related to libudev and UINT when compiling on windows with cygwin and related packages installed

/usr/include/w32api/mmsystem.h:28:11: error: unknown type name ‘UINT’
28 | typedef UINT MMVERSION;
| ^~~~
compilation terminated due to -fmax-errors=1.
make[2]: *** [src/CMakeFiles/direwolf.dir/build.make:930: src/CMakeFiles/direwolf.dir/audio_win.c.o] Error 1
make[2]: *** Waiting for unfinished jobs....
/cygdrive/e/Sotwares/direwolf-1.7-dev-A/src/cm108.c:135:10: fatal error: libudev.h: No such file or directory
135 | #include <libudev.h>
| ^~~~~~~~~~~
compilation terminated.
make[2]: *** [src/CMakeFiles/direwolf.dir/build.make:944: src/CMakeFiles/direwolf.dir/cm108.c.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1375: src/CMakeFiles/direwolf.dir/all] Error 2
make: *** [Makefile:166: all] Error 2

@wb2osz
Copy link
Owner

wb2osz commented Dec 8, 2022

Compiling with Cygwin compiler is not supported. I don't think that anyone else has ever asked for this.
I prefer the MinGW compiler because it generates native Windows code without the need for the Cygwin runtime,
If you would like to submit a code change to add compatibility, it would be welcome as long as it does not break the other platforms.

Use the MinGW compiler as described in the User Guide.
https://github.com/wb2osz/direwolf/blob/dev/doc/User-Guide.pdf
This section: "4.6 Build Dire Wolf from source on Windows (optional)"

If the compiler is not in the normal location, environment variables must be set:

export CC=/usr/bin/x86_64-w64-mingw32-gcc
export CXX=/usr/bin/x86_64-w64-mingw32-g++
export AR=/usr/bin/x86_64-w64-mingw32-ar
export WINDRES=/usr/bin/x86_64-w64-mingw32-windres

@wb2osz wb2osz closed this as completed Dec 8, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants