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.
10 lines
131 B
Makefile
10 lines
131 B
Makefile
CXX_SOURCES := main.cpp
|
|
|
|
ifneq ($(OS),Darwin)
|
|
USE_LIBSTDCPP := 1
|
|
else
|
|
USE_SYSTEM_STDLIB := 1
|
|
endif
|
|
|
|
include Makefile.rules
|