Bug 1205242 - Part 2: Require libc++ for building the clang plugin on OSX; r=ted

This commit is contained in:
Ehsan Akhgari 2015-09-28 13:19:35 -04:00
Родитель 206f530585
Коммит 132b75b223
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -13,6 +13,11 @@ SOURCES += [
DISABLE_STL_WRAPPING = True
NO_VISIBILITY_FLAGS = True
# libc++ is required to build plugins against clang on OS X.
if CONFIG['HOST_OS_ARCH'] == 'Darwin':
CXXFLAGS += ['-stdlib=libc++']
LDFLAGS += ['-lc++']
DIRS += [
'tests',
]