[Lldb-commits] [lldb] r287609 - Turn on LLDB_EDITLINE_USE_WCHAR on FreeBSD
Ed Maste via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 21 18:25:41 PST 2016
Author: emaste
Date: Mon Nov 21 20:25:41 2016
New Revision: 287609
URL: http://llvm.org/viewvc/llvm-project?rev=287609&view=rev
Log:
Turn on LLDB_EDITLINE_USE_WCHAR on FreeBSD
Modified:
lldb/trunk/include/lldb/Host/Editline.h
Modified: lldb/trunk/include/lldb/Host/Editline.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Host/Editline.h?rev=287609&r1=287608&r2=287609&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Host/Editline.h (original)
+++ lldb/trunk/include/lldb/Host/Editline.h Mon Nov 21 20:25:41 2016
@@ -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
More information about the lldb-commits
mailing list