Files
clang-p2996/lldb/test/API/lang/cpp/stl/Makefile
Dmitry Vasilyev de7f7ea884 [lldb][test] Fix TestStdCXXDisassembly test (#112357)
The patch #98694 was not enough. This test is still failed on the
buildbot https://lab.llvm.org/staging/#/builders/195/builds/4438
Use `USE_LIBSTDCPP := 1` instead for non Darwin OS and skip the test if
libstdc++.so is missing.
2024-10-16 00:08:58 +04:00

10 lines
131 B
Makefile

CXX_SOURCES := main.cpp
ifneq ($(OS),Darwin)
USE_LIBSTDCPP := 1
else
USE_SYSTEM_STDLIB := 1
endif
include Makefile.rules