Skip to content

Commit

Permalink
native: xcode: Fix inherited LDFLAGS for mingw32 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlschuetter committed Jan 11, 2024
1 parent 01cf6fe commit 34d5ced
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4219,7 +4219,7 @@
"-Xcrossclang-use-gcc=x86_64-w64-mingw32-gcc",
);
OTHER_LDFLAGS = (
"$(inheritedx)",
"$(inherited)",
"-target",
"$(CROSSCLANG_TARGET)",
"-lws2_32",
Expand Down Expand Up @@ -4249,7 +4249,7 @@
"-Xcrossclang-use-gcc=x86_64-w64-mingw32-gcc",
);
OTHER_LDFLAGS = (
"$(inheritedx)",
"$(inherited)",
"-target",
"$(CROSSCLANG_TARGET)",
"-lWs2_32",
Expand Down Expand Up @@ -4905,7 +4905,7 @@
"-Xcrossclang-use-gcc=aarch64-w64-mingw32-gcc",
);
OTHER_LDFLAGS = (
"$(inheritedx)",
"$(inherited)",
"-target",
"$(CROSSCLANG_TARGET)",
"-lws2_32",
Expand Down Expand Up @@ -4936,7 +4936,7 @@
"-Xcrossclang-use-gcc=aarch64-w64-mingw32-gcc",
);
OTHER_LDFLAGS = (
"$(inheritedx)",
"$(inherited)",
"-target",
"$(CROSSCLANG_TARGET)",
"-lWs2_32",
Expand Down

0 comments on commit 34d5ced

Please sign in to comment.