www/chromium: Fix build on 10.1-RELEASE

Unbreak build on 10.1-RELEASE after r426855

Submitted by:	cpm
Reviewed by:	chromium (rene)
Approved by:	chromium (rene), feld (mentor, explicit)
MFH:		2016Q4
Differential Revision:	D8699
This commit is contained in:
Carlos J. Puga Medina 2016-12-07 09:57:25 +00:00
parent 3b24b78662
commit f03c5587cd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=428044
2 changed files with 17 additions and 4 deletions

View file

@ -191,7 +191,8 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch-clang
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1002000
BUILD_DEPENDS+= ${LOCALBASE}/lib/c++/libstdc++.so:devel/libc++
CXXFLAGS+= -stdlib=libc++ -isystem ${LOCALBASE}/include/c++/v1
GN_ARGS+= extra_cxxflags="-stdlib=libc++ -isystem ${LOCALBASE}/include/c++/v1" \
extra_ldflags="-L${LOCALBASE}/lib"
.endif
.if ${OSVERSION} < 1100000

View file

@ -1,6 +1,18 @@
--- build/toolchain/gcc_toolchain.gni.orig 2016-10-06 04:02:08.000000000 +0300
+++ build/toolchain/gcc_toolchain.gni 2016-10-13 10:28:11.777849000 +0300
@@ -453,14 +453,28 @@
--- build/toolchain/gcc_toolchain.gni.orig 2016-11-10 20:02:09 UTC
+++ build/toolchain/gcc_toolchain.gni
@@ -10,6 +10,11 @@ import("//build/toolchain/cc_wrapper.gni
import("//build/toolchain/goma.gni")
import("//build/toolchain/toolchain.gni")
+declare_args() {
+ extra_cxxflags = ""
+ extra_ldflags = ""
+}
+
# This template defines a toolchain for something that works like gcc
# (including clang).
#
@@ -453,14 +458,28 @@ template("clang_toolchain") {
}
gcc_toolchain(target_name) {