Skip to content
Snippets Groups Projects

Unify the commandline length limit logic

Merged Christian Pfeiffer requested to merge ChrisTX/cmake:unified-commandline-length into master

As a followup to !633 (merged) , this patch would unify the commandline length logic from the Makefile and Ninja generators, ensuring consistent behavior across all generators.

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Author Contributor

    I've noticed that MSYS patches the response file behavior of CMake downstream by disabling it altogether for the "MSYS Makefiles" generator, see https://github.com/Alexpux/MINGW-packages/blob/master/mingw-w64-cmake/0001-Disable-response-files-for-MSYS-Generator.patch . This is genuinely confusing as some packages will exceed the limit on Windows and simply won't compile with "MSYS Makefiles", but will build with "Unix Makefiles" when called from MSYS unless that CMAKE_NEED_RESPONSE variable they've introduced is set (I ran into this while attempting to build OpenBLAS on the weekend, for example).

    Under the current behavior, CMake has no limits defined for Windows in the Makefile generators, since sysconf doesn't exist there and the 8000 character limit only applied to Ninja, so I suspect the logic behind forcing the generator to always use Makefiles in the platform script stems from this oversight. Namely, under MSYS, the link and compile lines will never be visible due to the excessive usage of response files.

    Unless there's something in specific that I'm missing, the forced usage of response could be removed from Windows-GNU.cmake once the command line length can be properly determined in the Makefile generators on Windows.

  • added 1 commit

    • 1f139880 - Unify command line length logic

    Compare with previous version

  • Christian Pfeiffer resolved all discussions

    resolved all discussions

  • Brad King mentioned in issue #16771

    mentioned in issue #16771

  • the forced usage of response could be removed from Windows-GNU.cmake

    Yes, this would be nice to do. PTAL at cmMakefileTargetGenerator::CheckUseResponseFileForLibraries and cmMakefileTargetGenerator::AddIncludeFlags which I think would need updates for that. Currently they don't check any limit.

  • Brad King
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading