[PATCH] D33049: [libcxx] Support for Objective-C++ tests
Duncan P. N. Exon Smith via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat May 13 14:12:09 PDT 2017
dexonsmith added inline comments.
================
Comment at: utils/libcxx/compiler.py:110-114
+ if input_is_text:
+ if is_objcxx:
+ cmd += ['-x', 'objective-c++', '-fobjc-arc']
+ else:
+ cmd += ['-x', 'c++']
----------------
Do we need/want a way to choose between ARC and no-ARC?
https://reviews.llvm.org/D33049
More information about the cfe-commits
mailing list