From 7559e2260392e5f3ae5ee36fc423d1ca31cbd928 Mon Sep 17 00:00:00 2001 From: ASNiVOR Date: Sat, 2 Nov 2024 11:01:45 +0000 Subject: [PATCH] fix linux build script --- ExternalProjects/vfEmu6502/build_linux.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ExternalProjects/vfEmu6502/build_linux.sh b/ExternalProjects/vfEmu6502/build_linux.sh index 6ec316cab8..a9a1acb7c4 100644 --- a/ExternalProjects/vfEmu6502/build_linux.sh +++ b/ExternalProjects/vfEmu6502/build_linux.sh @@ -3,9 +3,9 @@ if [ -z "$BIZHAWKBUILD_HOME" ]; then export BIZHAWKBUILD_HOME="$(realpath "$(dir if [ -z "$CC" ]; then export CXX="clang"; fi mkdir -p build -$CC -std=c11 -O3 -fvisibility=hidden -fPIC -shared -s FlooohZ80.c -o build/vrEmu6502.so +$CC -std=c11 -O3 -fvisibility=hidden -fPIC -shared -s vr6502.c -o build/libvrEmu6502.so -cp build/libFlooohZ80.so "$BIZHAWKBUILD_HOME/Assets/dll" +cp build/libvrEmu6502.so "$BIZHAWKBUILD_HOME/Assets/dll" if [ -e "$BIZHAWKBUILD_HOME/output" ]; then - cp build/libFlooohZ80.so "$BIZHAWKBUILD_HOME/output/dll" + cp build/libvrEmu6502.so "$BIZHAWKBUILD_HOME/output/dll" fi