Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1501)

Side by Side Diff: build/config/posix/BUILD.gn

Issue 1556923002: clang: Makes builds with clang less dependent on absolute file path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverting change on OSX and iOS Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/config/linux/pkg_config.gni ('k') | build/config/sysroot.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/sysroot.gni") 5 import("//build/config/sysroot.gni")
6 6
7 assert(is_posix) 7 assert(is_posix)
8 8
9 # This is included by reference in the //build/config/compiler:runtime_library 9 # This is included by reference in the //build/config/compiler:runtime_library
10 # config that is applied to all targets. It is here to separate out the logic 10 # config that is applied to all targets. It is here to separate out the logic
11 # that is Posix-only. Please see that target for advice on what should go in 11 # that is Posix-only. Please see that target for advice on what should go in
12 # :runtime_library vs. :compiler. 12 # :runtime_library vs. :compiler.
13 config("runtime_library") { 13 config("runtime_library") {
14 if (!is_mac && sysroot != "") { 14 if (!is_mac && sysroot != "") {
15 # Pass the sysroot to all C compiler variants, the assembler, and linker. 15 # Pass the sysroot to all C compiler variants, the assembler, and linker.
16 cflags = [ "--sysroot=" + sysroot ] 16 cflags = [ "--sysroot=" + rebase_path(sysroot, root_build_dir) ]
17 asmflags = cflags 17 asmflags = cflags
18 ldflags = cflags 18 ldflags = cflags
19 19
20 # Need to get some linker flags out of the sysroot. 20 # Need to get some linker flags out of the sysroot.
21 ldflags += [ exec_script("sysroot_ld_path.py", 21 ldflags += [ exec_script("sysroot_ld_path.py",
22 [ 22 [
23 rebase_path("//build/linux/sysroot_ld_path.sh", 23 rebase_path("//build/linux/sysroot_ld_path.sh",
24 root_build_dir), 24 root_build_dir),
25 sysroot, 25 sysroot,
26 ], 26 ],
27 "value") ] 27 "value") ]
28 } 28 }
29 } 29 }
OLDNEW
« no previous file with comments | « build/config/linux/pkg_config.gni ('k') | build/config/sysroot.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698