Browse Source

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 years ago
parent
commit
2001ac7481
1 changed files with 2 additions and 2 deletions
  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 .