Austin Schuh
Austin Schuh
There is a perfectly good cross compiler for the other Windows variant (arm64 vs x86). The only problem is that it doesn't get registered by default, so it isn't easily...
Clang wants, in order: C++ header files only when compiling for C++ -isystem external/llvm_toolchain_llvm/include/c++/v1/ -isystem external/llvm_toolchain_llvm/include/x86_64-unknown-linux-gnu/c++/v1/ C header files -isystem external/llvm_toolchain_llvm/lib/clang/16/include We need a new flag_set which comes after the...
GCC and clang handle system paths and therefore sysroots very specifically. They include them strictly after any user provided includes. We can see this for a simple compile test. austin@localhost...