Skip to content

Commit

Permalink
v3.4.0-P
Browse files Browse the repository at this point in the history
  • Loading branch information
AffectedArc07 committed Nov 9, 2024
1 parent 483c1be commit be52a2b
Show file tree
Hide file tree
Showing 12 changed files with 2,866 additions and 558 deletions.
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ The license for RUST-G itself can be found on tg's repo. Code for the Paradise m
1. You **must** have a copy of `Git Bash` or some other bash emulator on windows, and a git identity setup. This will not work otherwise.
2. Run the `apply_patches.sh` file to autocreate a clone of `tg-rust-g`, and apply the patches to it.
3. Paradise RUST-G requires all features to be enabled.
- To build on windows, run `cargo build --release --all-features --target=i686-pc-windows-msvc`. This will generate a 32-bit `.dll` file that is compatible with BYOND.
- To build on linux, run `cargo build --release --all-features --target=i686-unknown-linux-gnu`. This will generate a 32-bit `.so` file that is compatible with BYOND.
- To build on windows, run `cargo build --release --features all --target=i686-pc-windows-msvc`. This will generate a 32-bit `.dll` file that is compatible with BYOND.
- To build on linux, run `cargo build --release --features all --target=i686-unknown-linux-gnu`. This will generate a 32-bit `.so` file that is compatible with BYOND.

If you are still stuck, check tg's README. for more detailed instructions.

Expand Down
4 changes: 2 additions & 2 deletions apply_patches.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

basedir=`pwd`
tg_tag="3.0.0"
tg_tag="3.4.0"

echo "Checking for TG rust-g repo.."
if [ ! -d "./tg-rust-g" ]
Expand Down Expand Up @@ -46,4 +46,4 @@ apply_patch() {
fi
}

apply_patch tg-rust-g paradise-rust-g origin/master
apply_patch tg-rust-g paradise-rust-g $tg_tag
Loading

0 comments on commit be52a2b

Please sign in to comment.