2021-04-18 15:01:52 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2021-03-07 22:37:29 +03:00
|
|
|
set -e
|
|
|
|
|
|
|
|
ARG0=$0
|
|
|
|
print_help() {
|
2021-04-15 18:09:36 +03:00
|
|
|
NAME=$(basename "$ARG0")
|
2021-03-07 22:37:29 +03:00
|
|
|
cat <<EOF
|
2021-09-03 23:12:07 +03:00
|
|
|
Usage: $NAME COMMAND [TARGET] [TOOLCHAIN] [ARGS...]
|
2021-08-29 15:48:35 +03:00
|
|
|
Supported TARGETs: aarch64, i686, x86_64, lagom. Defaults to SERENITY_ARCH, or i686 if not set.
|
2022-05-16 11:15:43 +03:00
|
|
|
Supported TOOLCHAINs: GNU, Clang. Defaults to SERENITY_TOOLCHAIN, or GNU if not set.
|
2021-03-07 22:37:29 +03:00
|
|
|
Supported COMMANDs:
|
|
|
|
build: Compiles the target binaries, [ARGS...] are passed through to ninja
|
|
|
|
install: Installs the target binary
|
|
|
|
image: Creates a disk image with the installed binaries
|
2021-04-15 18:09:36 +03:00
|
|
|
run: TARGET lagom: $NAME run lagom LAGOM_EXECUTABLE [ARGS...]
|
2021-03-24 00:41:14 +03:00
|
|
|
Runs the Lagom-built LAGOM_EXECUTABLE on the build host, e.g.
|
|
|
|
'shell' or 'js', [ARGS...] are passed through to the executable
|
2021-04-15 18:09:36 +03:00
|
|
|
All other TARGETs: $NAME run [TARGET] [KERNEL_CMD_LINE]
|
2021-03-07 22:37:29 +03:00
|
|
|
Runs the built image in QEMU, and optionally passes the
|
2021-03-12 21:03:49 +03:00
|
|
|
KERNEL_CMD_LINE to the Kernel
|
2021-03-11 07:26:26 +03:00
|
|
|
gdb: Same as run, but also starts a gdb remote session.
|
2021-04-15 18:09:36 +03:00
|
|
|
TARGET lagom: $NAME gdb lagom LAGOM_EXECUTABLE [-ex 'any gdb command']...
|
2021-03-12 21:07:17 +03:00
|
|
|
Passes through '-ex' commands to gdb
|
2021-04-15 18:09:36 +03:00
|
|
|
All other TARGETs: $NAME gdb [TARGET] [KERNEL_CMD_LINE] [-ex 'any gdb command']...
|
2021-03-12 21:07:17 +03:00
|
|
|
If specified, passes the KERNEL_CMD_LINE to the Kernel
|
2021-03-11 07:26:26 +03:00
|
|
|
Passes through '-ex' commands to gdb
|
2021-04-15 18:09:36 +03:00
|
|
|
test: TARGET lagom: $NAME test lagom [TEST_NAME_PATTERN]
|
2021-03-12 21:06:20 +03:00
|
|
|
Runs the unit tests on the build host, or if TEST_NAME_PATTERN
|
|
|
|
is specified tests matching it.
|
2021-04-15 18:09:36 +03:00
|
|
|
All other TARGETs: $NAME test [TARGET]
|
2021-03-12 21:06:20 +03:00
|
|
|
Runs the built image in QEMU in self-test mode, by passing
|
2021-10-23 19:26:50 +03:00
|
|
|
system_mode=self-test to the Kernel
|
2021-03-12 21:03:49 +03:00
|
|
|
delete: Removes the build environment for TARGET
|
2021-03-07 22:37:29 +03:00
|
|
|
recreate: Deletes and re-creates the build environment for TARGET
|
|
|
|
rebuild: Deletes and re-creates the build environment, and compiles for TARGET
|
2021-04-15 18:09:36 +03:00
|
|
|
kaddr2line: $NAME kaddr2line TARGET ADDRESS
|
2021-03-07 22:37:29 +03:00
|
|
|
Resolves the ADDRESS in the Kernel/Kernel binary to a file:line
|
2021-04-15 18:09:36 +03:00
|
|
|
addr2line: $NAME addr2line TARGET BINARY_FILE ADDRESS
|
2021-03-07 22:37:29 +03:00
|
|
|
Resolves the ADDRESS in BINARY_FILE to a file:line. It will
|
|
|
|
attempt to find the BINARY_FILE in the appropriate build directory
|
|
|
|
rebuild-toolchain: Deletes and re-builds the TARGET's toolchain
|
2021-04-20 07:29:10 +03:00
|
|
|
rebuild-world: Deletes and re-builds the toolchain and build environment for TARGET.
|
2021-08-22 10:11:17 +03:00
|
|
|
copy-src: Same as image, but also copies the project's source tree to ~/Source/serenity
|
|
|
|
in the built disk image.
|
|
|
|
|
2021-03-07 22:37:29 +03:00
|
|
|
|
|
|
|
Examples:
|
2021-04-15 18:09:36 +03:00
|
|
|
$NAME run i686 smp=on
|
2021-03-07 22:37:29 +03:00
|
|
|
Runs the image in QEMU passing "smp=on" to the kernel command line
|
2021-04-15 18:09:36 +03:00
|
|
|
$NAME run
|
2021-03-07 22:37:29 +03:00
|
|
|
Runs the image for the default TARGET i686 in QEMU
|
2021-04-15 18:09:36 +03:00
|
|
|
$NAME run lagom js -A
|
2021-03-12 21:03:49 +03:00
|
|
|
Runs the Lagom-built js(1) REPL
|
2021-04-15 18:09:36 +03:00
|
|
|
$NAME test lagom
|
2021-03-12 21:06:20 +03:00
|
|
|
Runs the unit tests on the build host
|
2021-04-15 18:09:36 +03:00
|
|
|
$NAME kaddr2line i686 0x12345678
|
2021-03-07 22:37:29 +03:00
|
|
|
Resolves the address 0x12345678 in the Kernel binary
|
2021-04-15 18:09:36 +03:00
|
|
|
$NAME addr2line i686 WindowServer 0x12345678
|
2021-03-07 22:37:29 +03:00
|
|
|
Resolves the address 0x12345678 in the WindowServer binary
|
2021-04-15 18:09:36 +03:00
|
|
|
$NAME gdb i686 smp=on -ex 'hb *init'
|
2021-03-11 07:26:26 +03:00
|
|
|
Runs the image for the TARGET i686 in qemu and attaches a gdb session
|
|
|
|
setting a breakpoint at the init() function in the Kernel.
|
2021-03-07 22:37:29 +03:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
die() {
|
|
|
|
>&2 echo "die: $*"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
>&2 print_help
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
CMD=$1
|
|
|
|
[ -n "$CMD" ] || usage
|
|
|
|
shift
|
|
|
|
if [ "$CMD" = "help" ]; then
|
|
|
|
print_help
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$1" ]; then
|
|
|
|
TARGET="$1"; shift
|
|
|
|
else
|
2021-08-28 13:20:52 +03:00
|
|
|
TARGET="${SERENITY_ARCH:-"i686"}"
|
2021-03-07 22:37:29 +03:00
|
|
|
fi
|
2021-09-03 23:12:07 +03:00
|
|
|
|
2021-11-01 16:22:20 +03:00
|
|
|
CMAKE_ARGS=()
|
2022-04-14 17:32:32 +03:00
|
|
|
HOST_COMPILER=""
|
2021-11-01 16:22:20 +03:00
|
|
|
|
|
|
|
# Toolchain selection only applies to non-lagom targets.
|
2022-05-16 11:15:43 +03:00
|
|
|
if [ "$TARGET" != "lagom" ] && [ -n "$1" ]; then
|
|
|
|
TOOLCHAIN_TYPE="$1"; shift
|
|
|
|
else
|
|
|
|
TOOLCHAIN_TYPE="${SERENITY_TOOLCHAIN:-"GNU"}"
|
|
|
|
fi
|
|
|
|
if ! [[ "${TOOLCHAIN_TYPE}" =~ ^(GNU|Clang)$ ]]; then
|
|
|
|
>&2 echo "ERROR: unknown toolchain '${TOOLCHAIN_TYPE}'."
|
|
|
|
exit 1
|
2021-11-01 16:22:20 +03:00
|
|
|
fi
|
2022-05-16 11:15:43 +03:00
|
|
|
CMAKE_ARGS+=( "-DSERENITY_TOOLCHAIN=$TOOLCHAIN_TYPE" )
|
2021-09-03 23:12:07 +03:00
|
|
|
|
2021-03-07 22:37:29 +03:00
|
|
|
CMD_ARGS=( "$@" )
|
2021-09-03 23:12:07 +03:00
|
|
|
|
2021-03-07 22:37:29 +03:00
|
|
|
get_top_dir() {
|
|
|
|
git rev-parse --show-toplevel
|
|
|
|
}
|
|
|
|
|
|
|
|
is_valid_target() {
|
2021-08-28 05:36:38 +03:00
|
|
|
if [ "$TARGET" = "aarch64" ]; then
|
|
|
|
CMAKE_ARGS+=("-DSERENITY_ARCH=aarch64")
|
|
|
|
return 0
|
|
|
|
fi
|
2021-08-29 15:50:07 +03:00
|
|
|
if [ "$TARGET" = "i686" ]; then
|
|
|
|
CMAKE_ARGS+=("-DSERENITY_ARCH=i686")
|
2021-03-07 22:37:29 +03:00
|
|
|
return 0
|
|
|
|
fi
|
2021-07-01 15:18:26 +03:00
|
|
|
if [ "$TARGET" = "x86_64" ]; then
|
|
|
|
CMAKE_ARGS+=("-DSERENITY_ARCH=x86_64")
|
|
|
|
return 0
|
|
|
|
fi
|
2021-08-29 15:50:07 +03:00
|
|
|
if [ "$TARGET" = "lagom" ]; then
|
|
|
|
CMAKE_ARGS+=("-DBUILD_LAGOM=ON")
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
return 1
|
2021-03-07 22:37:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
create_build_dir() {
|
2021-09-07 11:32:41 +03:00
|
|
|
if [ "$TARGET" != "lagom" ]; then
|
|
|
|
cmake -GNinja "${CMAKE_ARGS[@]}" -S "$SERENITY_SOURCE_DIR/Meta/CMake/Superbuild" -B "$SUPER_BUILD_DIR"
|
|
|
|
else
|
|
|
|
cmake -GNinja "${CMAKE_ARGS[@]}" -S "$SERENITY_SOURCE_DIR/Meta/Lagom" -B "$SUPER_BUILD_DIR"
|
|
|
|
fi
|
2021-03-07 22:37:29 +03:00
|
|
|
}
|
|
|
|
|
2022-04-14 17:32:32 +03:00
|
|
|
is_supported_compiler() {
|
|
|
|
local COMPILER="$1"
|
|
|
|
if [ -z "$COMPILER" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
local VERSION=""
|
|
|
|
VERSION="$($COMPILER -dumpversion)" || return 1
|
|
|
|
local MAJOR_VERSION=""
|
|
|
|
MAJOR_VERSION="${VERSION%%.*}"
|
|
|
|
if $COMPILER --version 2>&1 | grep "Apple clang" >/dev/null; then
|
|
|
|
return 1
|
|
|
|
elif $COMPILER --version 2>&1 | grep "clang" >/dev/null; then
|
|
|
|
[ "$MAJOR_VERSION" -gt 12 ] && return 0
|
|
|
|
else
|
|
|
|
[ "$MAJOR_VERSION" -gt 10 ] && return 0
|
|
|
|
fi
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
find_newest_compiler() {
|
2021-07-10 11:17:06 +03:00
|
|
|
local BEST_VERSION=0
|
2022-04-14 17:32:32 +03:00
|
|
|
local BEST_CANDIDATE=""
|
|
|
|
for CANDIDATE in "$@"; do
|
|
|
|
if ! command -v "$CANDIDATE" >/dev/null 2>&1; then
|
2021-07-10 11:17:06 +03:00
|
|
|
continue
|
|
|
|
fi
|
2022-04-14 17:32:32 +03:00
|
|
|
if $CANDIDATE --version 2>&1 | grep "Apple clang" >/dev/null; then
|
2021-07-10 11:17:06 +03:00
|
|
|
continue
|
|
|
|
fi
|
2022-04-14 17:32:32 +03:00
|
|
|
if ! $CANDIDATE -dumpversion >/dev/null 2>&1; then
|
2021-07-10 11:17:06 +03:00
|
|
|
continue
|
|
|
|
fi
|
2021-07-10 01:53:28 +03:00
|
|
|
local VERSION=""
|
2022-04-14 17:32:32 +03:00
|
|
|
VERSION="$($CANDIDATE -dumpversion)"
|
2021-07-10 11:17:06 +03:00
|
|
|
local MAJOR_VERSION="${VERSION%%.*}"
|
|
|
|
if [ "$MAJOR_VERSION" -gt "$BEST_VERSION" ]; then
|
|
|
|
BEST_VERSION=$MAJOR_VERSION
|
2022-04-14 17:32:32 +03:00
|
|
|
BEST_CANDIDATE="$CANDIDATE"
|
2021-07-10 11:17:06 +03:00
|
|
|
fi
|
|
|
|
done
|
2022-04-14 17:32:32 +03:00
|
|
|
HOST_COMPILER=$BEST_CANDIDATE
|
|
|
|
}
|
|
|
|
|
|
|
|
pick_host_compiler() {
|
|
|
|
if is_supported_compiler "$CC" && is_supported_compiler "$CXX"; then
|
|
|
|
CMAKE_ARGS+=("-DCMAKE_C_COMPILER=$CC")
|
|
|
|
CMAKE_ARGS+=("-DCMAKE_CXX_COMPILER=$CXX")
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
find_newest_compiler egcc gcc gcc-11 gcc-12 /usr/local/bin/gcc-11 /opt/homebrew/bin/gcc-11
|
|
|
|
if is_supported_compiler "$HOST_COMPILER"; then
|
|
|
|
CMAKE_ARGS+=("-DCMAKE_C_COMPILER=$HOST_COMPILER")
|
|
|
|
CMAKE_ARGS+=("-DCMAKE_CXX_COMPILER=${HOST_COMPILER/gcc/g++}")
|
|
|
|
return
|
2021-07-10 11:17:06 +03:00
|
|
|
fi
|
2022-04-14 17:32:32 +03:00
|
|
|
|
|
|
|
find_newest_compiler clang clang-13 clang-14 clang-15
|
|
|
|
if is_supported_compiler "$HOST_COMPILER"; then
|
|
|
|
CMAKE_ARGS+=("-DCMAKE_C_COMPILER=$HOST_COMPILER")
|
|
|
|
CMAKE_ARGS+=("-DCMAKE_CXX_COMPILER=${HOST_COMPILER/clang/clang++}")
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
die "Please make sure that GCC version 11, Clang version 13, or higher is installed."
|
2021-07-10 11:17:06 +03:00
|
|
|
}
|
|
|
|
|
2021-03-07 22:37:29 +03:00
|
|
|
cmd_with_target() {
|
|
|
|
is_valid_target || ( >&2 echo "Unknown target: $TARGET"; usage )
|
2022-04-14 17:32:32 +03:00
|
|
|
pick_host_compiler
|
2021-04-17 04:08:48 +03:00
|
|
|
|
2021-04-20 03:51:04 +03:00
|
|
|
if [ ! -d "$SERENITY_SOURCE_DIR" ]; then
|
|
|
|
SERENITY_SOURCE_DIR="$(get_top_dir)"
|
|
|
|
export SERENITY_SOURCE_DIR
|
2021-04-17 04:08:48 +03:00
|
|
|
fi
|
2021-09-03 23:12:07 +03:00
|
|
|
local TARGET_TOOLCHAIN=""
|
2021-09-07 11:32:41 +03:00
|
|
|
if [[ "$TOOLCHAIN_TYPE" != "GNU" && "$TARGET" != "lagom" ]]; then
|
|
|
|
# Only append the toolchain if it's not GNU
|
|
|
|
TARGET_TOOLCHAIN=$(echo "$TOOLCHAIN_TYPE" | tr "[:upper:]" "[:lower:]")
|
2021-09-03 23:12:07 +03:00
|
|
|
fi
|
|
|
|
BUILD_DIR="$SERENITY_SOURCE_DIR/Build/$TARGET$TARGET_TOOLCHAIN"
|
2021-03-12 20:58:49 +03:00
|
|
|
if [ "$TARGET" != "lagom" ]; then
|
|
|
|
export SERENITY_ARCH="$TARGET"
|
2022-02-19 02:39:02 +03:00
|
|
|
export SERENITY_TOOLCHAIN="$TOOLCHAIN_TYPE"
|
Toolchain+Meta: Update LLVM version to 13.0.0
This commit updates the Clang toolchain's version to 13.0.0, which comes
with better C++20 support and improved handling of new features by
clang-format. Due to the newly enabled `-Bsymbolic-functions` flag, our
Clang binaries will only be 2-4% slower than if we dynamically linked
them, but we save hundreds of megabytes of disk space.
The `BuildClang.sh` script has been reworked to build the entire
toolchain in just three steps: one for the compiler, one for GNU
binutils, and one for the runtime libraries. This reduces the complexity
of the build script, and will allow us to modify the CI configuration to
only rebuild the libraries when our libc headers change.
Most of the compile flags have been moved out to a separate CMake cache
file, similarly to how the Android and Fuchsia toolchains are
implemented within the LLVM repo. This provides a nicer interface than
the heaps of command-line arguments.
We no longer build separate toolchains for each architecture, as the
same Clang binary can compile code for multiple targets.
The horrible mess that `SERENITY_CLANG_ARCH` was, has been removed in
this commit. Clang happily accepts an `i686-pc-serenity` target triple,
which matches what our GCC toolchain accepts.
2021-08-13 13:11:12 +03:00
|
|
|
if [ "$TOOLCHAIN_TYPE" = "Clang" ]; then
|
|
|
|
TOOLCHAIN_DIR="$SERENITY_SOURCE_DIR/Toolchain/Local/clang"
|
|
|
|
else
|
|
|
|
TOOLCHAIN_DIR="$SERENITY_SOURCE_DIR/Toolchain/Local/$TARGET_TOOLCHAIN/$TARGET"
|
|
|
|
fi
|
2021-09-07 11:32:41 +03:00
|
|
|
SUPER_BUILD_DIR="$SERENITY_SOURCE_DIR/Build/superbuild-$TARGET$TARGET_TOOLCHAIN"
|
|
|
|
else
|
|
|
|
SUPER_BUILD_DIR="$BUILD_DIR"
|
|
|
|
CMAKE_ARGS+=("-DCMAKE_INSTALL_PREFIX=$SERENITY_SOURCE_DIR/Build/lagom-install")
|
2021-03-07 22:37:29 +03:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
ensure_target() {
|
2021-09-07 11:32:41 +03:00
|
|
|
[ -f "$SUPER_BUILD_DIR/build.ninja" ] || create_build_dir
|
2021-03-07 22:37:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
run_tests() {
|
|
|
|
local TEST_NAME="$1"
|
|
|
|
export CTEST_OUTPUT_ON_FAILURE=1
|
|
|
|
if [ -n "$TEST_NAME" ]; then
|
|
|
|
( cd "$BUILD_DIR" && ctest -R "$TEST_NAME" )
|
|
|
|
else
|
|
|
|
( cd "$BUILD_DIR" && ctest )
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
build_target() {
|
2021-09-16 12:02:44 +03:00
|
|
|
if [ "$TARGET" = "lagom" ]; then
|
|
|
|
# Ensure that all lagom binaries get built, in case user first
|
|
|
|
# invoked superbuild for serenity target that doesn't set -DBUILD_LAGOM=ON
|
|
|
|
cmake -S "$SERENITY_SOURCE_DIR/Meta/Lagom" -B "$BUILD_DIR" -DBUILD_LAGOM=ON
|
|
|
|
fi
|
2022-03-01 01:56:38 +03:00
|
|
|
|
|
|
|
# Get either the environement MAKEJOBS or all processors via CMake
|
2022-03-08 19:26:32 +03:00
|
|
|
[ -z "$MAKEJOBS" ] && MAKEJOBS=$(cmake -P "$SERENITY_SOURCE_DIR/Meta/CMake/processor-count.cmake" 2>&1)
|
2022-03-01 01:56:38 +03:00
|
|
|
|
2021-09-07 11:32:41 +03:00
|
|
|
# With zero args, we are doing a standard "build"
|
|
|
|
# With multiple args, we are doing an install/image/run
|
|
|
|
if [ $# -eq 0 ]; then
|
2022-03-01 01:56:38 +03:00
|
|
|
CMAKE_BUILD_PARALLEL_LEVEL="$MAKEJOBS" cmake --build "$SUPER_BUILD_DIR"
|
2021-09-07 11:32:41 +03:00
|
|
|
else
|
2022-03-01 01:56:38 +03:00
|
|
|
ninja -j "$MAKEJOBS" -C "$BUILD_DIR" -- "$@"
|
2021-09-07 11:32:41 +03:00
|
|
|
fi
|
2021-03-07 22:37:29 +03:00
|
|
|
}
|
|
|
|
|
2022-01-16 10:15:20 +03:00
|
|
|
build_image() {
|
|
|
|
if [ "$SERENITY_RUN" = "limine" ]; then
|
|
|
|
build_target limine-image
|
|
|
|
else
|
|
|
|
build_target image
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-03-07 22:37:29 +03:00
|
|
|
delete_target() {
|
|
|
|
[ ! -d "$BUILD_DIR" ] || rm -rf "$BUILD_DIR"
|
2021-09-07 11:32:41 +03:00
|
|
|
[ ! -d "$SUPER_BUILD_DIR" ] || rm -rf "$SUPER_BUILD_DIR"
|
2021-03-07 22:37:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
build_toolchain() {
|
2021-09-03 23:12:07 +03:00
|
|
|
echo "build_toolchain: $TOOLCHAIN_DIR"
|
2021-09-07 11:32:41 +03:00
|
|
|
if [ "$TOOLCHAIN_TYPE" = "Clang" ]; then
|
Toolchain+Meta: Update LLVM version to 13.0.0
This commit updates the Clang toolchain's version to 13.0.0, which comes
with better C++20 support and improved handling of new features by
clang-format. Due to the newly enabled `-Bsymbolic-functions` flag, our
Clang binaries will only be 2-4% slower than if we dynamically linked
them, but we save hundreds of megabytes of disk space.
The `BuildClang.sh` script has been reworked to build the entire
toolchain in just three steps: one for the compiler, one for GNU
binutils, and one for the runtime libraries. This reduces the complexity
of the build script, and will allow us to modify the CI configuration to
only rebuild the libraries when our libc headers change.
Most of the compile flags have been moved out to a separate CMake cache
file, similarly to how the Android and Fuchsia toolchains are
implemented within the LLVM repo. This provides a nicer interface than
the heaps of command-line arguments.
We no longer build separate toolchains for each architecture, as the
same Clang binary can compile code for multiple targets.
The horrible mess that `SERENITY_CLANG_ARCH` was, has been removed in
this commit. Clang happily accepts an `i686-pc-serenity` target triple,
which matches what our GCC toolchain accepts.
2021-08-13 13:11:12 +03:00
|
|
|
( cd "$SERENITY_SOURCE_DIR/Toolchain" && ./BuildClang.sh )
|
2021-09-03 23:12:07 +03:00
|
|
|
else
|
|
|
|
( cd "$SERENITY_SOURCE_DIR/Toolchain" && ARCH="$TARGET" ./BuildIt.sh )
|
|
|
|
fi
|
2021-03-07 22:37:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ensure_toolchain() {
|
|
|
|
[ -d "$TOOLCHAIN_DIR" ] || build_toolchain
|
2022-02-05 17:48:32 +03:00
|
|
|
|
|
|
|
# FIXME: Remove this check when most people have already updated their toolchain
|
|
|
|
if [ "$TOOLCHAIN_TYPE" = "GNU" ]; then
|
|
|
|
local ld_version
|
|
|
|
ld_version="$("$TOOLCHAIN_DIR"/bin/"$TARGET"-pc-serenity-ld -v)"
|
|
|
|
local expected_version="GNU ld (GNU Binutils) 2.38"
|
|
|
|
if [ "$ld_version" != "$expected_version" ]; then
|
|
|
|
echo "Your toolchain has an old version of binutils installed."
|
|
|
|
echo " installed version: \"$ld_version\""
|
|
|
|
echo " expected version: \"$expected_version\""
|
|
|
|
echo "Please run $ARG0 rebuild-toolchain $TARGET to update it."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2021-03-07 22:37:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
delete_toolchain() {
|
|
|
|
[ ! -d "$TOOLCHAIN_DIR" ] || rm -rf "$TOOLCHAIN_DIR"
|
|
|
|
}
|
|
|
|
|
2021-03-11 07:26:26 +03:00
|
|
|
kill_tmux_session() {
|
|
|
|
local TMUX_SESSION
|
|
|
|
TMUX_SESSION="$(tmux display-message -p '#S')"
|
|
|
|
[ -z "$TMUX_SESSION" ] || tmux kill-session -t "$TMUX_SESSION"
|
|
|
|
}
|
|
|
|
|
|
|
|
set_tmux_title() {
|
|
|
|
printf "\033]2;%s\033\\" "$1"
|
|
|
|
}
|
|
|
|
|
2021-03-12 20:53:06 +03:00
|
|
|
lagom_unsupported() {
|
|
|
|
[ "$TARGET" != "lagom" ] || die "${1:-"Command '$CMD' not supported for the lagom target"}"
|
|
|
|
}
|
|
|
|
|
2021-03-11 07:26:26 +03:00
|
|
|
run_gdb() {
|
|
|
|
local GDB_ARGS=()
|
|
|
|
local PASS_ARG_TO_GDB=""
|
|
|
|
local KERNEL_CMD_LINE=""
|
2021-03-12 21:07:17 +03:00
|
|
|
local LAGOM_EXECUTABLE=""
|
2021-03-11 07:26:26 +03:00
|
|
|
for arg in "${CMD_ARGS[@]}"; do
|
|
|
|
if [ "$PASS_ARG_TO_GDB" != "" ]; then
|
|
|
|
GDB_ARGS+=( "$PASS_ARG_TO_GDB" "$arg" )
|
|
|
|
PASS_ARG_TO_GDB=""
|
|
|
|
elif [ "$arg" = "-ex" ]; then
|
|
|
|
PASS_ARG_TO_GDB="$arg"
|
|
|
|
elif [[ "$arg" =~ ^-.*$ ]]; then
|
|
|
|
die "Don't know how to handle argument: $arg"
|
|
|
|
else
|
2021-03-12 21:07:17 +03:00
|
|
|
if [ "$TARGET" = "lagom" ]; then
|
|
|
|
if [ "$LAGOM_EXECUTABLE" != "" ]; then
|
|
|
|
die "Lagom executable can't be specified more than once"
|
|
|
|
fi
|
|
|
|
LAGOM_EXECUTABLE="$arg"
|
|
|
|
else
|
|
|
|
if [ "$KERNEL_CMD_LINE" != "" ]; then
|
|
|
|
die "Kernel command line can't be specified more than once"
|
|
|
|
fi
|
|
|
|
KERNEL_CMD_LINE="$arg"
|
2021-03-11 07:26:26 +03:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ "$PASS_ARG_TO_GDB" != "" ]; then
|
|
|
|
GDB_ARGS+=( "$PASS_ARG_TO_GDB" )
|
|
|
|
fi
|
2021-03-12 21:07:17 +03:00
|
|
|
if [ "$TARGET" = "lagom" ]; then
|
2021-09-07 11:32:41 +03:00
|
|
|
gdb "$BUILD_DIR/$LAGOM_EXECUTABLE" "${GDB_ARGS[@]}"
|
2021-03-12 21:07:17 +03:00
|
|
|
else
|
|
|
|
if [ -n "$KERNEL_CMD_LINE" ]; then
|
|
|
|
export SERENITY_KERNEL_CMDLINE="$KERNEL_CMD_LINE"
|
|
|
|
fi
|
2021-04-20 19:37:33 +03:00
|
|
|
sleep 1
|
2021-09-07 02:17:36 +03:00
|
|
|
"$(get_top_dir)/Meta/debug-kernel.sh" "${GDB_ARGS[@]}"
|
2021-03-11 07:26:26 +03:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-08-22 10:11:17 +03:00
|
|
|
if [[ "$CMD" =~ ^(build|install|image|copy-src|run|gdb|test|rebuild|recreate|kaddr2line|addr2line|setup-and-run)$ ]]; then
|
2021-03-07 22:37:29 +03:00
|
|
|
cmd_with_target
|
|
|
|
[[ "$CMD" != "recreate" && "$CMD" != "rebuild" ]] || delete_target
|
2021-03-12 20:58:49 +03:00
|
|
|
[ "$TARGET" = "lagom" ] || ensure_toolchain
|
2021-06-02 02:33:48 +03:00
|
|
|
ensure_target
|
2021-03-07 22:37:29 +03:00
|
|
|
case "$CMD" in
|
|
|
|
build)
|
|
|
|
build_target "$@"
|
|
|
|
;;
|
|
|
|
install)
|
|
|
|
build_target
|
|
|
|
build_target install
|
|
|
|
;;
|
|
|
|
image)
|
2021-03-12 20:53:06 +03:00
|
|
|
lagom_unsupported
|
2021-03-07 22:37:29 +03:00
|
|
|
build_target
|
|
|
|
build_target install
|
2022-01-16 10:15:20 +03:00
|
|
|
build_image
|
2021-03-07 22:37:29 +03:00
|
|
|
;;
|
2021-08-22 10:11:17 +03:00
|
|
|
copy-src)
|
|
|
|
lagom_unsupported
|
|
|
|
build_target
|
|
|
|
build_target install
|
|
|
|
export SERENITY_COPY_SOURCE=1
|
2022-01-16 10:15:20 +03:00
|
|
|
build_image
|
2021-08-22 10:11:17 +03:00
|
|
|
;;
|
2021-03-07 22:37:29 +03:00
|
|
|
run)
|
|
|
|
if [ "$TARGET" = "lagom" ]; then
|
2021-03-24 00:41:14 +03:00
|
|
|
build_target "${CMD_ARGS[0]}"
|
2021-09-07 11:32:41 +03:00
|
|
|
"$BUILD_DIR/${CMD_ARGS[0]}" "${CMD_ARGS[@]:1}"
|
2021-03-07 22:37:29 +03:00
|
|
|
else
|
2021-03-12 21:03:49 +03:00
|
|
|
build_target
|
2021-03-07 22:37:29 +03:00
|
|
|
build_target install
|
2022-01-16 10:15:20 +03:00
|
|
|
build_image
|
2021-03-07 22:37:29 +03:00
|
|
|
if [ -n "${CMD_ARGS[0]}" ]; then
|
|
|
|
export SERENITY_KERNEL_CMDLINE="${CMD_ARGS[0]}"
|
|
|
|
fi
|
|
|
|
build_target run
|
|
|
|
fi
|
|
|
|
;;
|
2021-03-11 07:26:26 +03:00
|
|
|
gdb)
|
|
|
|
command -v tmux >/dev/null 2>&1 || die "Please install tmux!"
|
|
|
|
if [ "$TARGET" = "lagom" ]; then
|
2021-03-12 21:07:17 +03:00
|
|
|
[ $# -ge 1 ] || usage
|
|
|
|
build_target "$@"
|
|
|
|
run_gdb "${CMD_ARGS[@]}"
|
2021-03-11 07:26:26 +03:00
|
|
|
else
|
2021-03-12 21:07:17 +03:00
|
|
|
build_target
|
2021-03-11 07:26:26 +03:00
|
|
|
build_target install
|
2022-01-16 10:15:20 +03:00
|
|
|
build_image
|
2022-02-19 02:39:02 +03:00
|
|
|
tmux new-session "$ARG0" __tmux_cmd "$TARGET" "$TOOLCHAIN_TYPE" run "${CMD_ARGS[@]}" \; set-option -t 0 mouse on \; split-window "$ARG0" __tmux_cmd "$TARGET" "$TOOLCHAIN_TYPE" gdb "${CMD_ARGS[@]}" \;
|
2021-03-11 07:26:26 +03:00
|
|
|
fi
|
|
|
|
;;
|
2021-03-12 21:06:20 +03:00
|
|
|
test)
|
|
|
|
build_target
|
|
|
|
if [ "$TARGET" = "lagom" ]; then
|
|
|
|
run_tests "${CMD_ARGS[0]}"
|
|
|
|
else
|
|
|
|
build_target install
|
2022-01-16 10:15:20 +03:00
|
|
|
build_image
|
2021-10-23 18:31:00 +03:00
|
|
|
# In contrast to CI, we don't set 'panic=shutdown' here,
|
|
|
|
# in case the user wants to inspect qemu some more.
|
2021-10-23 19:26:50 +03:00
|
|
|
export SERENITY_KERNEL_CMDLINE="fbdev=off system_mode=self-test"
|
2021-03-12 21:06:20 +03:00
|
|
|
export SERENITY_RUN="ci"
|
|
|
|
build_target run
|
|
|
|
fi
|
|
|
|
;;
|
2021-03-07 22:37:29 +03:00
|
|
|
rebuild)
|
|
|
|
build_target "$@"
|
|
|
|
;;
|
|
|
|
recreate)
|
|
|
|
;;
|
|
|
|
kaddr2line)
|
2021-03-12 20:53:06 +03:00
|
|
|
lagom_unsupported
|
2021-03-07 22:37:29 +03:00
|
|
|
build_target
|
|
|
|
[ $# -ge 1 ] || usage
|
2021-09-23 17:29:07 +03:00
|
|
|
if [ "$TOOLCHAIN_TYPE" = "Clang" ]; then
|
|
|
|
ADDR2LINE="$TOOLCHAIN_DIR/bin/llvm-addr2line"
|
|
|
|
else
|
2022-03-27 14:47:35 +03:00
|
|
|
ADDR2LINE="$TOOLCHAIN_DIR/bin/$TARGET-pc-serenity-addr2line"
|
2021-09-23 17:29:07 +03:00
|
|
|
fi
|
|
|
|
"$ADDR2LINE" -e "$BUILD_DIR/Kernel/Kernel" "$@"
|
2021-03-07 22:37:29 +03:00
|
|
|
;;
|
|
|
|
addr2line)
|
|
|
|
build_target
|
|
|
|
[ $# -ge 2 ] || usage
|
|
|
|
BINARY_FILE="$1"; shift
|
|
|
|
BINARY_FILE_PATH="$BUILD_DIR/$BINARY_FILE"
|
2021-03-12 20:58:49 +03:00
|
|
|
if [ "$TARGET" = "lagom" ]; then
|
|
|
|
command -v addr2line >/dev/null 2>&1 || die "Please install addr2line!"
|
|
|
|
ADDR2LINE=addr2line
|
2021-09-23 17:29:07 +03:00
|
|
|
elif [ "$TOOLCHAIN_TYPE" = "Clang" ]; then
|
|
|
|
ADDR2LINE="$TOOLCHAIN_DIR/bin/llvm-addr2line"
|
2021-03-12 20:58:49 +03:00
|
|
|
else
|
2022-03-27 14:47:35 +03:00
|
|
|
ADDR2LINE="$TOOLCHAIN_DIR/bin/$TARGET-pc-serenity-addr2line"
|
2021-03-12 20:58:49 +03:00
|
|
|
fi
|
2021-03-07 22:37:29 +03:00
|
|
|
if [ -x "$BINARY_FILE_PATH" ]; then
|
2021-03-12 20:58:49 +03:00
|
|
|
"$ADDR2LINE" -e "$BINARY_FILE_PATH" "$@"
|
2021-03-07 22:37:29 +03:00
|
|
|
else
|
2021-03-12 20:58:49 +03:00
|
|
|
find "$BUILD_DIR" -name "$BINARY_FILE" -executable -type f -exec "$ADDR2LINE" -e {} "$@" \;
|
2021-03-07 22:37:29 +03:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
build_target "$CMD" "$@"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
elif [ "$CMD" = "delete" ]; then
|
|
|
|
cmd_with_target
|
|
|
|
delete_target
|
|
|
|
elif [ "$CMD" = "rebuild-toolchain" ]; then
|
|
|
|
cmd_with_target
|
2021-03-12 20:53:06 +03:00
|
|
|
lagom_unsupported "The lagom target uses the host toolchain"
|
2021-03-07 22:37:29 +03:00
|
|
|
delete_toolchain
|
|
|
|
ensure_toolchain
|
2021-04-20 07:29:10 +03:00
|
|
|
elif [ "$CMD" = "rebuild-world" ]; then
|
|
|
|
cmd_with_target
|
|
|
|
lagom_unsupported "The lagom target uses the host toolchain"
|
|
|
|
delete_toolchain
|
|
|
|
delete_target
|
|
|
|
ensure_toolchain
|
|
|
|
ensure_target
|
|
|
|
build_target
|
2021-03-11 07:26:26 +03:00
|
|
|
elif [ "$CMD" = "__tmux_cmd" ]; then
|
|
|
|
trap kill_tmux_session EXIT
|
|
|
|
cmd_with_target
|
|
|
|
CMD="$1"; shift
|
|
|
|
CMD_ARGS=("${CMD_ARGS[@]:1}")
|
|
|
|
if [ "$CMD" = "run" ]; then
|
|
|
|
if [ -n "${CMD_ARGS[0]}" ]; then
|
|
|
|
export SERENITY_KERNEL_CMDLINE="${CMD_ARGS[0]}"
|
|
|
|
fi
|
|
|
|
# We need to make sure qemu doesn't start until we continue in gdb
|
|
|
|
export SERENITY_EXTRA_QEMU_ARGS="${SERENITY_EXTRA_QEMU_ARGS} -d int -no-reboot -no-shutdown -S"
|
2022-03-25 01:03:32 +03:00
|
|
|
# We need to disable kaslr to let gdb map the kernel symbols correctly
|
|
|
|
export SERENITY_KERNEL_CMDLINE="${SERENITY_KERNEL_CMDLINE} disable_kaslr"
|
2021-03-11 07:26:26 +03:00
|
|
|
set_tmux_title 'qemu'
|
|
|
|
build_target run
|
|
|
|
elif [ "$CMD" = "gdb" ]; then
|
|
|
|
set_tmux_title 'gdb'
|
|
|
|
run_gdb "${CMD_ARGS[@]}"
|
|
|
|
fi
|
2021-03-07 22:37:29 +03:00
|
|
|
else
|
|
|
|
>&2 echo "Unknown command: $CMD"
|
|
|
|
usage
|
|
|
|
fi
|