build(debug): Add CMake option to generate full debug information for VC6 builds#1370
Merged
xezon merged 1 commit intoTheSuperHackers:mainfrom Jul 27, 2025
Merged
Conversation
xezon
reviewed
Jul 27, 2025
cmake/compilers.cmake
Outdated
There was a problem hiding this comment.
I think this needs to be moved up near the other set_property(GLOBAL PROPERTY JOB_POOLS ?
Author
There was a problem hiding this comment.
Should be good now, i initially went with setting it seperate to keep things a bit cleaner looking
6513bdf to
ab98344
Compare
fbraz3
pushed a commit
to fbraz3/GeneralsX
that referenced
this pull request
Nov 10, 2025
… VC6 builds (TheSuperHackers#1370) RTS_BUILD_OPTION_VC6_FULL_DEBUG
fbraz3
pushed a commit
to fbraz3/GeneralsX
that referenced
this pull request
Feb 23, 2026
… VC6 builds (TheSuperHackers#1370) RTS_BUILD_OPTION_VC6_FULL_DEBUG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds a cmake option to make VC6 generate builds with full debug information.
This does slow down the build process so it disabled by default.
This sets the compiler options
/Ziand sets the build pools to 1 as generating the full debug info is not supported with VC6 when multi-threaded builds are used.