Changes between Version 1 and Version 2 of Ticket #69591, comment 1
- Timestamp:
- Mar 26, 2024, 9:40:06 AM (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #69591, comment 1
v1 v2 9 9 This 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. 10 10 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).11 Solutions 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). 12 12 13 13 For more background, see https://bugs.llvm.org/show_bug.cgi?id=42540