Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit 2a6316f

Browse files
committed
fix: re-enable cross platform builds (#551)
1 parent 7dee61a commit 2a6316f

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

scripts/build/build_cross.ts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -101,21 +101,21 @@ async function buildAndCopyCrossPlatform(outDir: string) {
101101
await Deno.remove(outDir, { recursive: true }).catch(() => {});
102102

103103
const platforms = [
104-
// {
105-
// name: "linux_x86_64",
106-
// target: "x86_64-unknown-linux-gnu",
107-
// files: ["rivet", "librivet_toolchain_ffi.so"],
108-
// },
109-
// {
110-
// name: "windows_x86_64",
111-
// target: "x86_64-pc-windows-gnu",
112-
// files: ["rivet.exe", "rivet_toolchain_ffi.dll"],
113-
// },
114-
// {
115-
// name: "macos_x86_64",
116-
// target: "x86_64-apple-darwin",
117-
// files: ["rivet", "librivet_toolchain_ffi.dylib"],
118-
// },
104+
{
105+
name: "linux_x86_64",
106+
target: "x86_64-unknown-linux-gnu",
107+
files: ["rivet", "librivet_toolchain_ffi.so"],
108+
},
109+
{
110+
name: "windows_x86_64",
111+
target: "x86_64-pc-windows-gnu",
112+
files: ["rivet.exe", "rivet_toolchain_ffi.dll"],
113+
},
114+
{
115+
name: "macos_x86_64",
116+
target: "x86_64-apple-darwin",
117+
files: ["rivet", "librivet_toolchain_ffi.dylib"],
118+
},
119119
{
120120
name: "macos_arm64",
121121
target: "aarch64-apple-darwin",

0 commit comments

Comments
 (0)