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

Refactor game build configuration and build dll as subproject #1484

Closed
wants to merge 2 commits into from

Conversation

illwieckz
Copy link
Member

@illwieckz illwieckz commented Jan 1, 2025

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:

@slipher
Copy link
Member

slipher commented Jan 1, 2025

Please no 😭. Having stuff built in a sub-invocation makes everything suck. For example:

  • When building with Ninja you don't get any progress messages.
  • Can't build targets individually. I often use this ability when working on something in the sgame because of the cgame taking a lot longer to build (due to rmlui).

@illwieckz illwieckz force-pushed the illwieckz/dll-subcmake/sync branch from 07390e2 to 039add7 Compare January 6, 2025 19:31
@illwieckz
Copy link
Member Author

Now it only builds the dll game in a subproject when HARDENING is ON, it builds it as a usual otherwise.

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 build* functions I've done may be refactored too but I postpone that.

@illwieckz illwieckz force-pushed the illwieckz/dll-subcmake/sync branch 3 times, most recently from c835650 to e8919d6 Compare January 6, 2025 19:40
@illwieckz
Copy link
Member Author

Actually the build* functions I've done may be refactored too but I postpone that.

Rethinking about it, I discovered it was easier than what I thought, so I did it.

@illwieckz illwieckz force-pushed the illwieckz/dll-subcmake/sync branch 3 times, most recently from 04c838b to fff11e5 Compare January 6, 2025 21:39
@illwieckz illwieckz changed the title cmake: build dll game with sub cmake to use different compilation flags cmake: build hardened dll game with sub cmake to use different compilation flags Jan 6, 2025
@illwieckz illwieckz force-pushed the illwieckz/dll-subcmake/sync branch 2 times, most recently from 43e01d4 to 55fdd45 Compare January 6, 2025 23:07
@illwieckz
Copy link
Member Author

illwieckz commented Jan 6, 2025

I'm happy with that deep refactor. It will also make implementing Wasm easier.

I split the changes in two commits:

  • The deep refactor making it easy to build something as subproject without copy-pasting a ton of boiler-plate.
  • A small commit building the dll as subproject when USE_HARDENED is enabled, but building the dll as usual otherwise.

The same code now being reused for the various builds, it is even more robust than ever.

@illwieckz illwieckz force-pushed the illwieckz/dll-subcmake/sync branch from 55fdd45 to 55760ca Compare January 8, 2025 01:00
@illwieckz illwieckz force-pushed the illwieckz/dll-subcmake/sync branch from 55760ca to e59671f Compare January 20, 2025 10:28
@illwieckz illwieckz added T-Improvement Improvement for an existing feature A-Build T-Cleanup labels Jan 20, 2025
@slipher
Copy link
Member

slipher commented Jan 22, 2025

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/

@illwieckz illwieckz force-pushed the illwieckz/dll-subcmake/sync branch from e59671f to 31b97f2 Compare January 25, 2025 07:07
@illwieckz illwieckz changed the title cmake: build hardened dll game with sub cmake to use different compilation flags cmake: refactor game build configuration to reuse the same code in parent build or subproject build and mutualize code between vm type build Jan 25, 2025
@illwieckz illwieckz changed the title cmake: refactor game build configuration to reuse the same code in parent build or subproject build and mutualize code between vm type build Refactor game build configuration to reuse the same code in parent build or subproject build and mutualize code between vm type build. Jan 25, 2025
@illwieckz illwieckz changed the title Refactor game build configuration to reuse the same code in parent build or subproject build and mutualize code between vm type build. Refactor game build configuration to reuse the same code in parent build or subproject build and mutualize code between vm type build Jan 25, 2025
@illwieckz
Copy link
Member Author

illwieckz commented Jan 25, 2025

I now renamed the PR:

Refactor game build configuration to reuse the same code in parent build or subproject build and mutualize code between vm type build

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).

@slipher
Copy link
Member

slipher commented Jan 25, 2025

Building DLL in a subproject with PIC seems worse than building both engine and DLL with PIC, assuming the latter is possible.

Adding another subproject for a toolchain like WASI would just reuse the same framework.

I'm having trouble following this since we already have NaCl toolchains with the exact same structure that a WebAssembly one would need.

@illwieckz
Copy link
Member Author

illwieckz commented Feb 12, 2025

I just got that error while trying to run an armhf engine with an armhf dll game on Linux:

Warn: Error during initialization: VM: Failed to load shared library VM cgame-native-dll.so:
cgame-native-dll.so: unexpected reloc type 0x03 

According to this comment:

Relocation type 3 is R_ARM_REL32 which is a static relocation not allowed in shared objects. How did you create the shared lib? Make sure you compile all the code going into it with -fPIC.

I understand I get that error because the dynamic library is linked with code that was meant for the engine executable.

@illwieckz
Copy link
Member Author

Well, that's probably an Arm variant of:

/usr/bin/ld: daemon/libs/freetype/libfreetype.a(truetype.c.o):
 warning: relocation against `TT_RunIns' in read-only section `.text'
/usr/bin/ld: daemon/libs/freetype/libfreetype.a(truetype.c.o):
 relocation R_X86_64_PC32 against symbol `TT_RunIns' can not be used when making a shared object;
 recompile with -fPIC

@illwieckz
Copy link
Member Author

illwieckz commented Feb 12, 2025

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.

@slipher
Copy link
Member

slipher commented Feb 12, 2025

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/

Was there any real drawback of building all code with -fPIC? I can't remember.

@illwieckz illwieckz changed the title Refactor game build configuration to reuse the same code in parent build or subproject build and mutualize code between vm type build Refactor game build configuration and build dll as subproject Feb 14, 2025
@illwieckz illwieckz closed this Feb 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-Build T-Cleanup T-Improvement Improvement for an existing feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants