-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.mk
40 lines (35 loc) · 1.04 KB
/
vars.mk
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
#
# vars.mk
#
# -----------------------------------------------------------------------
# flags
#
MAKEFLAGS = -j1
MAKEFLAGS_PARALLEL = -j$(shell bash -c 'nproc')
# -----------------------------------------------------------------------
# triplets
#
CROSS_TARGET = arm-linux-gnueabihf
# In the process of building the cross-compilation toolchain a local toolchain is also created.
# To avoid confusion with any existing native compilation tools the "triplet" for this toolchain
# has the word "cross" embedded into it.
CROSS_HOST = $(shell bash -c 'echo $$MACHTYPE' | sed 's/-[^-]*/-cross/')
# -----------------------------------------------------------------------
#
# directories
#
CROSS_SYSROOT = $(shell pwd)/cross-sysroot
CROSS_TOOLS = $(shell pwd)/cross-tools
WORK = $(shell pwd)/work
# -----------------------------------------------------------------------
#
# versions
#
KERNEL_HEADERS_VERSION = 5.15.55
LIBGMP_VERSION = 6.2.1
LIBMPFR_VERSION = 4.2.1
LIBMPC_VERSION = 1.3.1
BINUTILS_VERSION = 2.35.2
GCC_VERSION = 12.2.0
GLIBC_VERSION = 2.36
# End of file