11 lines
271 B
Bash
Executable File
11 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Installation directory for GCC and Binutils"
|
|
export SDK_TOOLCHAIN_DIR="$(pwd)/sdk/toolchain"
|
|
|
|
# Directory for installing ports"
|
|
export SDK_SYSROOT_DIR="$(pwd)/sdk/sysroot"
|
|
|
|
# Add i586-kolibrios toolchain to PATH
|
|
export PATH=$PATH:"$SDK_TOOLCHAIN_DIR/bin"
|