-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Building with MinGW #76
Comments
CMake supports MinGW and MSYS, I believe, so please try using it to generate the appropriate files for your system. |
I've been struggling all day with this repo, and nothing has come of it. Is a simple Regex parser so much to ask? |
Did you try using CMake? |
Yes, and it still didn't work. Edit: This won't work, boost's regex won't work, at this rate I'll be better off writing my own regex engine. |
Please read How to Report Bugs Effectively by Simon Tatham. |
Regex2 gets compile errors for me for mingw using the make file generated by Cmake: E:\src\re2\bin>make and on and on for hundreds of errors. Apparently some source files are using c++11 features, but the option for them is not being turned on. If anyone wants the full printfile of the compile I can send it to them. It looks like cmakelists.txt needs somethings added to generate compile option -stdc=c++11 if mingw is being used. Cmake version: 3.4.0 |
I think it would be worth re-opening this topic. |
Ahh. Yes, C++11 has been required since cd505f4. Unfortunately, I had not considered MinGW at the time. I will look into tweaking Thank you for investigating! |
Further testing shows: in the makefiles generated by Cmake for mingw on windows, and for gcc on linux, the option "-std=c++" is not passed to the compiled, and the compile gets hundreds of errors for this. Note that this happens on gcc on linux as well as mingw on windows. If I manually add this option to CMAKE_C++_FLAGS in the GUI, then re2 builds cleanly on gcc. mingw gets a compile error in re2test.cc because it can't find include file <include sys/mman.h>. This is a separate issue. I'll check if there's an error in my setup before logging a new issue. Tomarrow I'm test that re2 still compiles ok on MSVC. |
Gopherbot's commit does not correct the problem for me--I get the same results as before. |
Maybe it should use BTW, if you want to compare, here is an example of what
|
Please try with 366f920 on Linux. I will try to figure out what the other MinGW issue might be. |
That didn't seem to work either. I'm tired and could be making errors. I'll retest in the morning. |
No worries. As always, your assistance is very much appreciated! I have committed 5e8da74, which should hopefully address the other MinGW issue. |
In Cmake, WIN32 is true for Mingw. We want to set "-std=c++11" for both gcc in linux and Mingw in Windows, but not for MSVC. The following works for me: if (NOT MSVC) Also, the fix for not finding sys/mman.h worked for me. I'll retest everything in the morning. |
Good catch. |
Okay, 72276a1 looks for GCC/Clang, so that should hopefully cover Cygwin as well as MinGW. |
With the latest patch, re2 builds correctly for MSVC and mingw on Windows and GCC on Linux using the make files generated by CMake. Thanks to those who contributed on this. |
CMake does not have an option to create a make file for Cygwin. However, RE2 compile cleanly under Cygwin using the make file in the top directory of re2. (Since the aim of Cygwin is to replicate a Unix environment, this is probably to be expected, but I thought I'd try. It worked.) |
The Thank you very much for diagnosing the problems and also for confirming the fixes! |
I feel stupid asking this, but how the hell do you build this with MinGW? make doesn't work, and the makefile doesn't seem to have the answer.
The text was updated successfully, but these errors were encountered: