Changes between Version 1 and Version 2 of Ticket #69591, comment 1


Ignore:
Timestamp:
Mar 26, 2024, 9:40:06 AM (7 months ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #69591, comment 1

    v1 v2  
    99This happens because you are using a compiler that supports C++20 and its <version> header, and the project has a VERSION file in its root directory, and the project uses an `-I` flag pointing to the root directory, and you are on a case-insensitive filesystem.
    1010
    11 Solutions are for the project not to use an `-I` flag pointing to the root directory, or for the project to rename the VERSION file (and update any references to that file elsewhere in the code).
     11Solutions are for the project not to use an `-I` flag pointing to the root directory (and relocate any files that need to be included from there to other directories), or for the project to rename the VERSION file (and update any references to that file elsewhere in the code).
    1212
    1313For more background, see https://bugs.llvm.org/show_bug.cgi?id=42540