瀏覽代碼

Disable static stdlib linking. (#533)

By removing ` -Xswiftc -static-stdlib`. Seems like these cause some issues these days; let's see if our users can confirm that removing this flag helps.
Daniel Alm 6 年之前
父節點
當前提交
2001ac7481
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -4,8 +4,8 @@ all:
 	cp .build/debug/protoc-gen-swiftgrpc .
 
 plugin:
-	swift build --product protoc-gen-swift -c release -Xswiftc -static-stdlib
-	swift build --product protoc-gen-swiftgrpc -c release -Xswiftc -static-stdlib
+	swift build --product protoc-gen-swift -c release
+	swift build --product protoc-gen-swiftgrpc -c release
 	cp .build/release/protoc-gen-swift .
 	cp .build/release/protoc-gen-swiftgrpc .