-
Notifications
You must be signed in to change notification settings - Fork 62
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
Refactor game build configuration and build dll as subproject #1484
Conversation
…rent build or subproject build and mutualize code between vm type build
9a1de43
to
07390e2
Compare
Please no 😭. Having stuff built in a sub-invocation makes everything suck. For example:
|
07390e2
to
039add7
Compare
Now it only builds the dll game in a subproject when I refactored a lot the code, also fixed some mistakes with nexe (the nacl target strings was parsed also with saigo, but there is none). Actually the |
c835650
to
e8919d6
Compare
Rethinking about it, I discovered it was easier than what I thought, so I did it. |
04c838b
to
fff11e5
Compare
43e01d4
to
55fdd45
Compare
I'm happy with that deep refactor. It will also make implementing Wasm easier. I split the changes in two commits:
The same code now being reused for the various builds, it is even more robust than ever. |
55fdd45
to
55760ca
Compare
55760ca
to
e59671f
Compare
While we were discussing this in IRC the other day, I found a link that claims you can used the "PIC" flag on everything and it will work (unlike the "PIE" flag on everything which breaks dynamic libs). https://mropert.github.io/2018/02/02/pic_pie_sanitizers/ |
e59671f
to
31b97f2
Compare
I now renamed the PR:
The ability to build an hardened dll with PIC while hardened exe is PIE by using a subproject for hardened dll is actually a demonstration of how the new CMake code is now reusable and provides a framework for such things, instead of relying on lengthy boiler-plate copy-paste. Adding another subproject for a toolchain like WASI would just reuse the same framework. That framework may also be used for other occurrences of either building a game code in a subproject or in parent project directly, like building a wasm game with a native engine (subproject), or a wasm game with a wasm engine (parent project). |
Building DLL in a subproject with PIC seems worse than building both engine and DLL with PIC, assuming the latter is possible.
I'm having trouble following this since we already have NaCl toolchains with the exact same structure that a WebAssembly one would need. |
I just got that error while trying to run an armhf engine with an armhf dll game on Linux:
According to this comment:
I understand I get that error because the dynamic library is linked with code that was meant for the engine executable. |
Well, that's probably an Arm variant of:
|
I reproduce those kind of errors on both amd64 and arm64 even when I disable hardening, I'm fed up of working around those bugs with random CMake options. |
Was there any real drawback of building all code with -fPIC? I can't remember. |
Refactor game build configuration to reuse the same code in parent build or subproject build and mutualize code between vm type build.
Also build hardened dll game with sub cmake to use different compilation flags.
Obsoletes:
See on game side: