Environment variables changed: - KOS_SDK_DIR to install libraries - KOS_PORTS_DIR for ported applications to KolibriOS Signed-off-by: Max Logaev <maxlogaev@proton.me>
9 lines
204 B
Bash
Executable File
9 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Installation directory for GCC and Binutils
|
|
export KOS_SDK_DIR="$(pwd)/sdk"
|
|
export KOS_PORTS_DIR="$(pwd)/ports"
|
|
|
|
# Add i586-kolibrios toolchain to PATH
|
|
export PATH="$KOS_SDK_DIR/bin:$PATH"
|