浏览代码

Merge pull request #1517 from Kangz/mac_complete_lib

BUILD.gn: only use complete_static_lib on mac
John Kessenich 7 年之前
父节点
当前提交
2e0806c7be
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      BUILD.gn

+ 5 - 1
BUILD.gn

@@ -157,7 +157,11 @@ static_library("glslang_static") {
   deps = [
     ":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:no_chromium_code" ]