.github/workflows/ci_linux_x64_clang_debug.yml # Note: Not using ccache here. Debug builds need a lot of cache space # and caching only provides marginal build time improvements. - name: CMake - configure run: | cmake \ -G Ninja \ -B ${BUILD_DIR} \ -DPython3_EXECUTABL...
Clang's integrated assembler does not allow assembly macros defined in one inline asm block using the .macro directive to be used across separate asm blocks. LLVM developers consider this a feature and not a bug, recommending code refactoring: https://bugs.llvm.org/show_bug.cgi?id=19749 As ...