-
-
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
Compiling in msys2 #934
Comments
Thank you! @tusharpm is working on windows support, so I think he can improve this further. The preprocessor check matches to mscv, but not to msys2, am I right? About the Python linking problems, I don't know what a |
I finally got around to installing msys2 to try this procedure.
After all those hacks - mostly manually modifying the build files generated by CMake (tiptoeing around the ones it overwrites 😅 ), I got it to build on MinGW32|msys2. The required patch is in this branch. |
@tusharpm Thanks for the response! I just saw this and gave it a try; building went smooth; no errors. But, looks like something's wrong...
And here's how it installed it. So, the dll's are in a weird location and |
That’s nice. You’ve solved a large piece. The steps you followed for install are correct, also. There’s probably no tutorial because there’s nothing more to it. The pastebin shows everything expected from the install, I think (yes, we don’t install For running, please try: |
@tusharpm Should I always do that? No actual executable? (Again, I've never done Python) But anyway, it doesn't work. |
An easier way is to create a shortcut to double-click and get you started. I'm yet to figure out how to do that from the installer package.
I'm sorry to hear that. One workaround you should try is to run the command in |
I assumed that, since it's a module, it should detect it anywhere, apparently not... Anyway, I had problem with OpenGL; OpenAge compained that OpenGL 2.1 is not found (While I'm sure I have OpenGL 3.1). This is a problem I had ever since I got this laptop with Win10, I didn't have this problem on my Win7 laptop (equipped with the same processor, and thus the same videochip). So, I build against the Msys2's OpenGL library, but the resulting application loads Having said that, OpenAge still didn't load, showing this error. And this is the last thing I do with OpenAge. If I plan to contribute the project, I should start studying Python, otherwise I just feel like a baby playing with stuff I don't understand. @tusharpm Thanks a lot for all your help and your patience! I'll still keep an eye on the project. |
It doesn't fail to find the python module (which is actually installed in Furthermore, I wouldn't recommend modifying any system files. Most things (at least everything I've encountered so far) can be solved without doing that. I think the process looks at The error you've linked to, is from GUI (or renderer, perhaps?). @TheJJ might know someone who can help with the specific issue. I'm sorry - I'm not an expert in either. There's some good news - you've successfully entered C++ land. The python piece is solved. You can contribute to the C++ parts (alongside learning Python - same as me 😃) if you wish. |
Strange, it should give some names in the stack trace. The build is somehow not in the debug mode. Maybe building like There is also a launch option |
I take responsibility for the stack trace not being human-readable. For debugging further, would adding logs in |
For later use this should install the dependencies for
nyan Debugger: Here is a guide on porting as well: We should write something in our docs how to build with |
@tusharpm I've got it compiled and started
The build log can be found here: Update: Error was due to wrong target ^^ |
MSVC on Appveyor says the following to it:
Undefined references and linking to DLLs/SOs
From the link:
This is the content of the I already tried What could it be, how can I diagnose further or am I missing something obvious? |
I just saw the new page and there's a few issues:
I added
Ususlly with cmake, I cheat and create a duplicate make.exe: cp /mingw64/bin/mingw32-make.exe /mingw64/bin/make.exe This eliminates the need to change make program from command line. I'm also not sure why you're using "CodeBlocks - MinGW Makefiles", "MSYS Makefiles" is what we need. MinGW assumes we're using cmd.exe, msys will use the shell. However, with all of these changes I still couldn't test OpenAge, since nyan building failed. |
Jop, might be better to use this for the usecase of building. (now I know what you meant, yeah, will change that)
I personally prefer to not install things that are unneeded. The toolchain would install that. If you are talking about the PR it is still work in progress so the best development workflow is still to be figured out.
Cheating is cheating. ;-) Let's keep it clean.
I don't think so. We want to use
With my current toolchain I can build libnyan, libopenage fine. Also linking with all the libraries for python works. The only problem I currently see is Python 3.8 |
You can replace
I really don't understand. You can use If you think that you have to use cmd.exe, bc it ships with mingw32-make, that's wrong. That page is referring to the MinGW project, we're using msys2, and MinGW (if installed from msys2 repo) works very well in the shell.
I forgot to strike that line through. As I mentioned, I had to add a couple if includes for everything to build, but linking A few word on warnings, in case anybody would like eliminate these. I received the following warnings during build:
|
Thx for telling me about the include issues, I've added them in #1268. Can you please post the error why linking |
@hgdagon Feel free to add a review in the PR so we have everything in one place, I pretty much just started this because no one else did. I'm working on something else right now, so I would also appreciate it, if you add your information there for example. ;-) |
@TheJJ here's my linking error:
@simonsan Which PR? You have several. |
This error should be fixed, it's because the class/function is not exported/exposed to the OAAPI. Should be fixed here. |
@simonsan I added a review. First time reviewing, so the quotes aren't really correct, I apologize.
I build that branch, and here's how it installed: Since I didn't change the install prefix in Cmake, I redirected the install path
However, running this is still a mystery, since, even if everything is in place, it won't run. |
My assumption is that it won't run because of #1201 |
@simonsan Actually, this is the error I get:
Which is correct, I don't have I don't have enough time to keep an eye on this all the time, but thank you. I started this issue 3 years ago, and it's nice to see someone working on this. |
It was a proposal of @TheJJ and I think as well that it's part of a fix. https://docs.python.org/3/faq/windows.html?highlight=pyd#is-a-pyd-file-the-same-as-a-dll But did you try if you rename it to |
Still, it generates wrong filenames.
Yes. I had to rename quite few files, actually. It ran, asked for AoE2 directory, went through conversion, but running failed:
|
It seems like the installation procedure is not working out for the way the filesystem is setup on msys. Did you start it from cmd or from msys shell? Furthermore I wonder if you maybe started it from outside but had a different Python version in the PATH. Assuming that from the |
@simonsan Those are ANSI sequences for coloring the terminal output :) |
I started from cmd, but Python for Windows is not in my path, so it's still using msys2's python. I tried running in the shell via So, yeah, I shouldn't have run it from cmd, in the first place. |
In #1301 I updated the |
@TheJJ I don't know what this is. Googling says it doesn't exist on Windows.
This happens @ 90% during the build process. |
I also meet this problem. |
This is just my experience compiling with msys2 (Spoiler alert: I DID NOT Succeed).
Preliminary configuration:
Go ahead and install everything in the dependency list, except for Python-related stuff (
numpy
,pillow
,pycodestyle
,pygments
,pylint
). Get those withpip
, except forpillow
.Qt5
is 5GB, so it's gonna take a while.Get dejavu fonts from here and install. These are unrelated to msys2 (and building in general).
Get the latest Pillow source,
4.3.0
as of now.Extract, cd into it and run (in mingw32 shell):
python3 setup.py build_ext --disable-jpeg2000 install
Get
pyReadLine
withpip
,Jasper
anddlfcn
from repo.If I didn't forget anything, this should be enough. CMake is also looking for
backtrace
,gperftools
, andinotify
. These seem to be optional, so I never bothered with these.As far as the code goes, my only problem with
libopenage
was the_MSC_VER
checks. You guys should really consider replacing those that look for Windows with something else. I've made some changes (libopenage-msys2.zip), but since I couldn't build openage itself, I can only confirm that libopenage builds with these changes, but I have no idea, if it actually works.When building openage, I got a bunch of unidentified references to
Py*
(you can feast your eyes here), which is not surprising, since nothing inopenage
is being linked against, well, anything python-related. At least I couldn't find one in any of thelinklibs.rsp
's inopenage
. Since I know pretty much nothing about Python, I didn't know what to do with this, so this was my dead end...I'm not sure if this is related or not, but CMake, for whatever reason, detected
PYTHON_LIBRARIES
andPYTHON_LIBRARY
aslibpython3.6.dll
, I manually changed them tolibpython3.6.dll.a
, that didn't seem to change anything...I noticed that there also seems to be a problem with
WinMain
/SDL_main
in run.exe,-lSDL2Main
must be added for Windows.I guess, this is it. I hope you guys find this useful!
The text was updated successfully, but these errors were encountered: