forked from Stichting-MINIX-Research-Foundation/minix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminix.service.mk
More file actions
40 lines (29 loc) · 1.06 KB
/
Copy pathminix.service.mk
File metadata and controls
40 lines (29 loc) · 1.06 KB
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
# MINIX-specific servers/drivers options
.include <bsd.own.mk>
# LSC: Our minimal c library has no putchar, which is called by the builtin
# functions of the compiler, so prevent using them.
AFLAGS+= -D__ASSEMBLY__
COPTS+= -fno-builtin
# LSC Static linking, order matters!
# We can't use --start-group/--end-group as they are not supported by our
# version of clang.
# 1. No default libs
LDADD:= -nodefaultlibs ${LDADD}
# 2. Services system library
LDADD+= -lsys
DPADD+= ${LIBSYS}
# 3. Minimal C library, if libc had not yet been added
.if ${LDADD:M-lc} == ""
LDADD+= -lminc
DPADD+= ${LIBMINC}
.endif # empty(${LDADD:M-lc})
.if ${MACHINE_ARCH} == "earm"
# LSC: On ARM, when compiling statically, with gcc, lgcc_eh is required
.if ${PROG:U} != "kernel" && !empty(CC:M*gcc)
# gcc_eh uses abort(), which is provided by minc
LDFLAGS+= ${${ACTIVE_CC} == "gcc":? -lgcc_eh:}
.endif # ${PROG:U} != "kernel" && !empty(CC:M*gcc)
.endif # ${MACHINE_ARCH} == "earm"
# Get (more) internal minix definitions and declarations.
CPPFLAGS += -D_MINIX_SYSTEM=1
.include <bsd.prog.mk>