You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
llvm-libc build: fix build failure with C++ libs disabled (#632)
Testing the llvm-libc build after the previous commit, I found that the
arm-multilib cmake script unconditionally tries to invoke build targets
like `cxxlibs-configure` or `cxxlibs-build` in the individual library
variant builds. Those targets don't exist in an llvm-libc build, because
those set `"ENABLE_CXX_LIBS": "OFF"` in their per-variant JSON files.
This commit applies the simplest possible fix: _make_ targets of those
names in `arm-runtimes`, even if nothing is actually in them. Then
invoking them from the higher-level build script is a NOP instead of a
failure.
0 commit comments