-
Notifications
You must be signed in to change notification settings - Fork 0
/
host.tup
23 lines (17 loc) · 844 Bytes
/
host.tup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This file contains the contains the host toolchain, which describes how to
# compile and link code for the host. If these are not specified, the system
# will attempt to find reasonable (and working!) values. For more info on what
# all these values mean, and how they are used, see:
# https://www.gnu.org/software/make/manual/html_node/Catalogue-of-Rules.html
# C compiler. Should also be able to link executables and libraries.
#HOST_CC =
# Flags for C and C++ compiling. Comes before the files.
#HOST_CPPFLAGS =
# Flags for C compiling. Comes before the files.
#HOST_CFLAGS =
# Flags for linking executables or libraries. Comes before the files.
#HOST_LDFLAGS =
# Extra flags (usually libraries) used when linking. Comes after the files.
#HOST_LDLIBS =
# Archiver. That is, GNU ar. Because static linking could be useful.
#HOST_AR =