Explorar el Código

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 hace 6 años
padre
commit
2001ac7481
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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 .