diff options
author | Ed Maste <emaste@freebsd.org> | 2016-11-22 02:25:41 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2016-11-22 02:25:41 +0000 |
commit | 52ff6267aa469036820816a6d19a7cc32b0e949f (patch) | |
tree | 0229f0bb9eb56308a714a2172299877e2df1c859 | |
parent | ae0f6620e4fd73f6ba4557814e28c526cf2fa6e6 (diff) | |
download | bcm5719-llvm-52ff6267aa469036820816a6d19a7cc32b0e949f.tar.gz bcm5719-llvm-52ff6267aa469036820816a6d19a7cc32b0e949f.zip |
Turn on LLDB_EDITLINE_USE_WCHAR on FreeBSD
llvm-svn: 287609
-rw-r--r-- | lldb/include/lldb/Host/Editline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/include/lldb/Host/Editline.h b/lldb/include/lldb/Host/Editline.h index 758f87d0bb6..065a63a1ff0 100644 --- a/lldb/include/lldb/Host/Editline.h +++ b/lldb/include/lldb/Host/Editline.h @@ -43,7 +43,7 @@ // will only be // used in cases where this is true. This is a compile time dependecy, for now // selected per target Platform -#if defined(__APPLE__) || defined(__NetBSD__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) #define LLDB_EDITLINE_USE_WCHAR 1 #include <codecvt> #else |