apio
1e0c8c5fe7
Since we already extract the symbols into a separate file which the kernel then uses for backtraces, this only brings us a smaller kernel, with no downsides :)
11 lines
330 B
Bash
Executable File
11 lines
330 B
Bash
Executable File
#!/usr/bin/env bash
|
|
export LUNA_ROOT=$(realpath $(dirname $0)/..)
|
|
export LUNA_BASE=$LUNA_ROOT/base
|
|
export PATH=$LUNA_ROOT/toolchain/x86-64-luna/bin:$LUNA_ROOT/toolchain/dist:$PATH
|
|
|
|
export CC=x86_64-luna-gcc
|
|
export CXX=x86_64-luna-g++
|
|
export LD=x86_64-luna-ld
|
|
export AR=x86_64-luna-ar
|
|
export ASM=nasm
|
|
export STRIP=x86_64-luna-strip |