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

Can't build on Windows #469

Closed
iontodirel opened this issue May 9, 2023 · 10 comments
Closed

Can't build on Windows #469

iontodirel opened this issue May 9, 2023 · 10 comments

Comments

@iontodirel
Copy link

iontodirel commented May 9, 2023

I am trying to build Direwolf on Windows with cygwin. Compile succeeds, but link fails with multiple `re_syntax_options' redefinitions. Build log attached.

EDIT: here are my settings

Windows details (Windows version and if it's 32 or 64bit): Windows 11 21H2, 22000.1817, 64-bit
What version of Cygwin mingw? 32 or 64bit? 3.4.6, 64-bit
What version of direwolf are you trying to compile? 64-bit direwolf
Did you install all the dependencies and environment variables for Windows compiling per https:
github.com/wb2osz/direwolf/blob/dev/doc/User-Guide.pdf
yes, there are no failures due to missing dependencies

Build log: log.txt

@dranch
Copy link
Collaborator

dranch commented May 9, 2023

You haven't provided enough information to confirm/deny this is a bug:

@iontodirel
Copy link
Author

iontodirel commented May 9, 2023

I apologize, I will provide them briefly.

EDIT:

Windows details (Windows version and if it's 32 or 64bit): Windows 11 21H2, 22000.1817, 64-bit
What version of Cygwin mingw? 32 or 64bit? 3.4.6, 64-bit
What version of direwolf are you trying to compile? 64-bit direwolf
Did you install all the dependencies and environment variables for Windows compiling per https://github.com/wb2osz/direwolf/blob/dev/doc/User-Guide.pdf yes, there are no failures due to missing dependencies

@dranch
Copy link
Collaborator

dranch commented May 10, 2023

Are you trying to compile Direwolf 1.6 (master GIT branch) or Direwolf 1.7G (DEV Git branch)?

@wb2osz
Copy link
Owner

wb2osz commented May 10, 2023

This clearly has something to do with the regular expression (regex) library.
On Linux, direwolf uses the version of regex supplied by the operating system.
A copy of regex is included for use on Windows where it does not exist.
The error message mentions duplicate definition of something from the regex library
I have Windows 10 here, and the versions of cygwin and mingw are not up to date.

This seems to be the culprit: REGEX_VARIABLE_IMPEXP reg_syntax_t re_syntax_options;
Maybe something about multiple definitions of the same external variable has changed.

@wb2osz
Copy link
Owner

wb2osz commented May 10, 2023

Try this:

Edit external/regex/regex.h

Change from: REGEX_VARIABLE_IMPEXP reg_syntax_t re_syntax_options;

Change to: extern reg_syntax_t re_syntax_options;

Let me know how it goes.

73,
john WB2OSZ

@iontodirel
Copy link
Author

I will try that tomorrow, thank you. And that seems like the right fix.

@wb2osz
Copy link
Owner

wb2osz commented May 19, 2023

Any results?

@iontodirel
Copy link
Author

iontodirel commented May 22, 2023

Hi @wb2osz, that worked! And tested that Direwolf works.

@wb2osz, one other question, I assume that MSVC is not supported anymore? I see references to it in the CMake build scripts, but the C code itself is written in a way that would not compile with MSVC.

@wb2osz
Copy link
Owner

wb2osz commented May 22, 2023

I'm glad to hear that you were able to build it OK.

The cmake scripts were provided by someone else and they have extra stuff, from other projects, in there that we really don't need.
I've only tried using gnu and clang compilers to make portability easier.
I have no idea how much effort would be needed to make direwolf build with MSVC.
It probably wouldn't be too horrible because it is using the windows header files and C runtime API.
Compiler options would definitely need to be changed.

@wb2osz
Copy link
Owner

wb2osz commented Oct 20, 2023

Issue resolved. No discussion for many months.

@wb2osz wb2osz closed this as completed Oct 20, 2023
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

3 participants