diff options
author | 2017-05-09 21:09:27 +0000 | |
---|---|---|
committer | 2017-05-09 21:09:27 +0000 | |
commit | 247444e3e456e299c607fd19dda8d130f3637bcf (patch) | |
tree | 7a9000e28629d493a3c1bf574d56772b3da16d01 /lib/libcompiler_rt | |
parent | If the target pane for send-keys in in a mode with a key table (that is, (diff) | |
download | wireguard-openbsd-247444e3e456e299c607fd19dda8d130f3637bcf.tar.xz wireguard-openbsd-247444e3e456e299c607fd19dda8d130f3637bcf.zip |
Enable TLS support but default to the emulatated TLS model. Enable the
runtime support code libcompiler_rt for this. This code uses functions that
live in libpthread, so code that uses TLS support will need to be linked
with -lpthread. This should allow more ports to build with base clang.
ok espie@
Diffstat (limited to 'lib/libcompiler_rt')
-rw-r--r-- | lib/libcompiler_rt/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcompiler_rt/Makefile b/lib/libcompiler_rt/Makefile index a2a249c83b9..a52d6254ae8 100644 --- a/lib/libcompiler_rt/Makefile +++ b/lib/libcompiler_rt/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2017/04/17 15:53:21 kettenis Exp $ +# $OpenBSD: Makefile,v 1.8 2017/05/09 21:09:27 kettenis Exp $ .include <bsd.own.mk> @@ -64,6 +64,7 @@ GEN_SRCS= absvdi2 \ divti3 \ divtf3 \ divxc3 \ + emutls \ enable_execute_stack \ eprintf \ extendsfdf2 \ |