Skip to content

Commit

Permalink
fix(src/cli/cli.cc): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jwerle committed Oct 4, 2023
1 parent 43a1a16 commit 0b3a55f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/cli/cli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4872,10 +4872,14 @@ int main (const int argc, const char* argv[]) {
}
}

#if defined(_WIN32) || defined(__linux__)
auto d = String(platform.win && debugBuild ? "d" : "");
#if defined(_WIN32)
auto d = String(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"));
#elif defined(__linux__)
auto d = "";
auto static_uv = prefixFile("lib/" + platform.arch + "-desktop/libuv.a");
auto static_runtime = trim(prefixFile("lib/" + platform.arch + "-desktop/libsocket-runtime.a"));
#else
auto d = "";
auto static_uv = "";
Expand Down

0 comments on commit 0b3a55f

Please sign in to comment.