Skip to content

Commit 2001ac7

Browse files
authored
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.
1 parent 3bfa848 commit 2001ac7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ all:
44
cp .build/debug/protoc-gen-swiftgrpc .
55

66
plugin:
7-
swift build --product protoc-gen-swift -c release -Xswiftc -static-stdlib
8-
swift build --product protoc-gen-swiftgrpc -c release -Xswiftc -static-stdlib
7+
swift build --product protoc-gen-swift -c release
8+
swift build --product protoc-gen-swiftgrpc -c release
99
cp .build/release/protoc-gen-swift .
1010
cp .build/release/protoc-gen-swiftgrpc .
1111

0 commit comments

Comments
 (0)