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

Commit

Permalink
fix: re-enable cross platform builds
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Oct 2, 2024
1 parent 338dfb6 commit 9a990ae
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions scripts/build/build_cross.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,21 +101,21 @@ async function buildAndCopyCrossPlatform(outDir: string) {
await Deno.remove(outDir, { recursive: true }).catch(() => {});

const platforms = [
// {
// name: "linux_x86_64",
// target: "x86_64-unknown-linux-gnu",
// files: ["rivet", "librivet_toolchain_ffi.so"],
// },
// {
// name: "windows_x86_64",
// target: "x86_64-pc-windows-gnu",
// files: ["rivet.exe", "rivet_toolchain_ffi.dll"],
// },
// {
// name: "macos_x86_64",
// target: "x86_64-apple-darwin",
// files: ["rivet", "librivet_toolchain_ffi.dylib"],
// },
{
name: "linux_x86_64",
target: "x86_64-unknown-linux-gnu",
files: ["rivet", "librivet_toolchain_ffi.so"],
},
{
name: "windows_x86_64",
target: "x86_64-pc-windows-gnu",
files: ["rivet.exe", "rivet_toolchain_ffi.dll"],
},
{
name: "macos_x86_64",
target: "x86_64-apple-darwin",
files: ["rivet", "librivet_toolchain_ffi.dylib"],
},
{
name: "macos_arm64",
target: "aarch64-apple-darwin",
Expand Down

0 comments on commit 9a990ae

Please sign in to comment.