-
Notifications
You must be signed in to change notification settings - Fork 11
/
yaul.env.in
56 lines (43 loc) · 1.3 KB
/
yaul.env.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- mode: conf -*-
# Only ABSOLUTE paths are to be used!
# If your path to GCC executable is:
# /home/user/x-tools/foo/bar/bin/sh2eb-elf-gcc
# then set the variables to:
# YAUL_INSTALL_ROOT=/home/user/x-tools/foo/bar
# YAUL_PROG_SH_PREFIX=sh2eb-elf
# YAUL_ARCH_SH_PREFIX=sh-elf
# Path to tool-chain installation directory
export YAUL_INSTALL_ROOT=/opt/tool-chains/sh2eb-elf
# SH-2 tool-chain program prefix (leave empty if the same as
# YAUL_ARCH_SH_PREFIX)
export YAUL_PROG_SH_PREFIX=
# SH-2 tool-chain prefix
export YAUL_ARCH_SH_PREFIX=sh2eb-elf
# M68k tool-chain prefix
export YAUL_ARCH_M68K_PREFIX=m68keb-elf
# Path to where the build is to be located
export YAUL_BUILD_ROOT=${HOME}/libyaul
# Name of build directory
export YAUL_BUILD=build
# Option: Memory allocator used:
# Values:
# tlsf: Use TLSF (Two-Level Segregated Fit)
# : Do not use any memory allocator
export YAUL_OPTION_MALLOC_IMPL="tlsf"
# Compilation verbosity
# Values:
# : Verbose
# 1: Display build step line only
export SILENT=1
# Display ANSI colors during build process
# Values:
# : Display
# 1: Do not display
export NOCOLOR=
# Enable DEBUG on a release build
# Values:
# : Disable DEBUG
# 1: Enable DEBUG
export DEBUG_RELEASE=1
# Absolute path for executable xorrisofs
export MAKE_ISO_XORRISOFS=/usr/bin/xorrisofs