We generate our PCH as a preprocess step before compile time and then force include the PCH into every file in the project. This works fine for us with MSVC cl but clang-cl is checking to see if the PCH is included in the sources (excluded by design).
I get the following error:
fatal error: #include of 'pch.hxx' not seen while attempting to use precompiled header
Shouldn't clang-cl detect the /FI (or /clang:-include) as a header within the source?