mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
Merge d504e3220c
into 9634e58f0a
This commit is contained in:
commit
8e8683d0bc
6 changed files with 85 additions and 20 deletions
|
@ -1,6 +1,27 @@
|
|||
#!/bin/sh -ex
|
||||
|
||||
cd build || exit 1
|
||||
RPCS3_DIR=$(pwd)
|
||||
|
||||
echo "pwd = $RPCS3_DIR"
|
||||
ls -la -F
|
||||
|
||||
# If we're building using a CI, let's use the runner's directory
|
||||
if [ -n "$BUILDDIR" ]; then
|
||||
BUILD_DIR="$BUILDDIR"
|
||||
else
|
||||
BUILD_DIR="$RPCS3_DIR/build"
|
||||
fi
|
||||
echo "BUILD_DIR = $BUILD_DIR"
|
||||
|
||||
cd "$BUILD_DIR" || exit 1
|
||||
|
||||
echo "pwd = $(pwd)"
|
||||
ls -la -F
|
||||
|
||||
echo "cd $RPCS3_DIR/rpcs3"
|
||||
cd "$RPCS3_DIR/rpcs3"
|
||||
echo "pwd = $(pwd)"
|
||||
ls -la -F
|
||||
|
||||
CPU_ARCH="${1:-x86_64}"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue