This repository was archived by the owner on Apr 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathusage.txt
58 lines (53 loc) · 2.14 KB
/
usage.txt
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
57
58
Usage: ./driver.sh <options>
Script description: Build a Linux kernel image with Clang and boot it
Environment variables:
The script can take into account specific environment variables, mostly used
with Travis. They can be invoked in one of three ways:
$ export VAR=<value> && ./driver.sh
$ VAR=value ./driver.sh
$ ./driver.sh VAR=value
AR:
If no AR value is specified, the script will attempt to set AR to
llvm-ar-10 llvm-ar-9, llvm-ar-8, llvm-ar-7, llvm-ar, then
${CROSS_COMPILE}ar if they are found in PATH.
ARCH (required):
If no ARCH value is specified, it's an error; there is no default.
Currently, arm32_v7, arm32_v6, arm32_v5, arm64, mips, mipsel, ppc32,
ppc64, ppc64le, s390, riscv, and x86_64 are supported.
CC:
If no CC value is specified, the script will attempt to set CC to
clang-10, clang-9, clang-8, clang-7, then clang if they are found
in PATH.
LD:
If no LD value is specified, ${CROSS_COMPILE}ld is used.
REPO:
Nicknames for trees:
linux (default)
linux-next
4.19
4.14
4.9
4.4
common-4.19
common-4.14
common-4.9
common-4.4
OBJSIZE:
If no OBJSIZE value is specified, the script will attempt to set OBJSIZE
to llvm-size-10 llvm-size-9, llvm-size-8, llvm-size-7, llvm-size, then
${CROSS_COMPILE}size if they are found in PATH.
TUX_BUILD:
If set, will use the tuxbuild client to trigger a remote build on
tuxbuild. https://gitlab.com/Linaro/tuxbuild
Optional parameters:
-c | --clean:
Run 'make mrproper' before building the kernel. Normally, the build
system is smart enought to figure out what needs to be rebuilt but
sometimes it might be necessary to clean it manually.
-j | --jobs
Pass this value to make. The script will use all cores by default but
this isn't always the best value.
--lto
By default, the script turns off LTO/CFI for quicker build times. If
your machine can handle the more intensive compile, pass this flag
to avoid attempting to disable it. This does not enable LTO explicitly.