Commit 7da3d887 authored by sdefresne's avatar sdefresne Committed by Commit bot

Use libc++ by default on iOS

libc++ is the recommended C++ library for iOS development so use
it by default when targeting iOS.

clang ToT ships with all the required header and libraries to
support compiling with -stdlib=libc++ so remove the exception.

BUG=366744

Review URL: https://codereview.chromium.org/589513003

Cr-Commit-Position: refs/heads/master@{#295715}
parent 0ce925fc
......@@ -804,6 +804,7 @@
'safe_browsing%': 0,
'enable_managed_users%': 0,
'enable_task_manager%': 0,
'use_system_libcxx%': 1,
}],
# Use GPU accelerated cross process image transport by default
......@@ -1505,12 +1506,6 @@
'use_chromevox_next%': 0,
'conditions': [
# The version of clang shipped upstream does not find C++ headers when
# using -stdlib=libc++ so we instead need to use the version of clang
# coming with Xcode.
['OS=="ios" and use_system_libcxx==1', {
'clang_xcode%': 1,
}],
# Enable the Syzygy optimization step for the official builds.
['OS=="win" and buildtype=="Official" and syzyasan!=1', {
'syzygy_optimize%': 1,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment