Merge pull request #1517 from Kangz/mac_complete_lib
BUILD.gn: only use complete_static_lib on mac
This commit is contained in:
commit
2e0806c7be
1 changed files with 5 additions and 1 deletions
6
BUILD.gn
6
BUILD.gn
|
|
@ -157,7 +157,11 @@ static_library("glslang_static") {
|
||||||
deps = [
|
deps = [
|
||||||
":glslang_sources",
|
":glslang_sources",
|
||||||
]
|
]
|
||||||
complete_static_lib = true
|
|
||||||
|
# Without this the macOS linker complains that the static library is empty
|
||||||
|
if (is_mac) {
|
||||||
|
complete_static_lib = true
|
||||||
|
}
|
||||||
|
|
||||||
configs -= [ "//build/config/compiler:chromium_code" ]
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
||||||
configs += [ "//build/config/compiler:no_chromium_code" ]
|
configs += [ "//build/config/compiler:no_chromium_code" ]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue