Skip to content

Commit

Permalink
chore(src/cli/cli.cc): include static libraries for linux too
Browse files Browse the repository at this point in the history
  • Loading branch information
jwerle committed Oct 4, 2023
1 parent 6888020 commit 43a1a16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/cli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4872,7 +4872,7 @@ int main (const int argc, const char* argv[]) {
}
}

#if defined(_WIN32)
#if defined(_WIN32) || defined(__linux__)
auto d = String(platform.win && debugBuild ? "d" : "");
auto static_uv = prefixFile("lib" + d + "\\" + platform.arch + "-desktop\\libuv.lib");
auto static_runtime = trim(prefixFile("lib" + d + "\\" + platform.arch + "-desktop\\libsocket-runtime" + d + ".a"));
Expand Down

0 comments on commit 43a1a16

Please sign in to comment.