]>
Commit | Line | Data |
---|---|---|
59e0d9fe A |
1 | .PATH: ${.CURDIR}/ppc/gen |
2 | ||
9385eb3d A |
3 | MDSRCS += \ |
4 | abs.s \ | |
9385eb3d A |
5 | fp.h \ |
6 | icacheinval.s \ | |
9385eb3d | 7 | mcount.s \ |
224c7076 A |
8 | setjmperr.c \ |
9 | _ctx_start.S \ | |
10 | getcontext.S \ | |
11 | getmcontext.c \ | |
12 | makecontext.c \ | |
13 | _setcontext.S \ | |
14 | setcontext.c \ | |
15 | swapcontext.c | |
e3cf15b6 | 16 | |
9385eb3d | 17 | SUPPRESSSRCS += memcpy.c memmove.c memset.c |
224c7076 A |
18 | |
19 | # makecontext.c can only compile with __DARWIN_UNIX03=0 because the structure | |
20 | # field names are renamed with __ prefix when __DARWIN_UNIX03=1. If | |
21 | # makecontext.c ever needs to build variant, this will have to be fix properly | |
22 | CFLAGS-makecontext.c = -U__DARWIN_UNIX03 -D__DARWIN_UNIX03=0 |