diff options
| author | guenther <> | 2017-12-16 20:06:56 +0000 |
|---|---|---|
| committer | guenther <> | 2017-12-16 20:06:56 +0000 |
| commit | 09687c04dc436ea29235c588185e43443b906e9f (patch) | |
| tree | 2fa5dfadabf13e01a2eeaa103c96c8e3c59c40c9 /src/lib/libc/stdlib/Makefile.inc | |
| parent | 95bd5261c689f60078c0b683fa28a76360fb28e4 (diff) | |
| download | openbsd-09687c04dc436ea29235c588185e43443b906e9f.tar.gz openbsd-09687c04dc436ea29235c588185e43443b906e9f.tar.bz2 openbsd-09687c04dc436ea29235c588185e43443b906e9f.zip | |
Move __cxa_thread_atexit* to its own .c file to avoid pulling the code
(w/ _dlctl reference) into static executables. It's all Mark's code so
put his preferred copyright on it.
ok kettenis@
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libc/stdlib/Makefile.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc index e754e09196..55b8018522 100644 --- a/src/lib/libc/stdlib/Makefile.inc +++ b/src/lib/libc/stdlib/Makefile.inc | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | # $OpenBSD: Makefile.inc,v 1.63 2017/03/24 16:15:31 otto Exp $ | 1 | # $OpenBSD: Makefile.inc,v 1.64 2017/12/16 20:06:55 guenther Exp $ |
| 2 | 2 | ||
| 3 | # stdlib sources | 3 | # stdlib sources |
| 4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/stdlib ${LIBCSRCDIR}/stdlib | 4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/stdlib ${LIBCSRCDIR}/stdlib |
| @@ -10,7 +10,9 @@ SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \ | |||
| 10 | merge.c posix_pty.c qsort.c radixsort.c rand.c random.c \ | 10 | merge.c posix_pty.c qsort.c radixsort.c rand.c random.c \ |
| 11 | realpath.c remque.c setenv.c strtoimax.c \ | 11 | realpath.c remque.c setenv.c strtoimax.c \ |
| 12 | strtol.c strtoll.c strtonum.c strtoul.c strtoull.c strtoumax.c \ | 12 | strtol.c strtoll.c strtonum.c strtoul.c strtoull.c strtoumax.c \ |
| 13 | system.c tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c \ | 13 | system.c \ |
| 14 | tfind.c thread_atexit.c tsearch.c \ | ||
| 15 | _rand48.c drand48.c erand48.c jrand48.c \ | ||
| 14 | lcong48.c lrand48.c mrand48.c nrand48.c seed48.c srand48.c \ | 16 | lcong48.c lrand48.c mrand48.c nrand48.c seed48.c srand48.c \ |
| 15 | _Exit.c icdb.c | 17 | _Exit.c icdb.c |
| 16 | 18 | ||
