[PATCH] D41013: Fix test/msan/textdomain.cc on NetBSD
Kamil Rytarowski via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 8 08:48:32 PST 2017
krytarowski created this revision.
krytarowski added a project: Sanitizers.
This tests must be linked with -lintl for the gettext(3) features.
Sponsored by <The NetBSD Foundation>
Repository:
rL LLVM
https://reviews.llvm.org/D41013
Files:
test/msan/textdomain.cc
Index: test/msan/textdomain.cc
===================================================================
--- test/msan/textdomain.cc
+++ test/msan/textdomain.cc
@@ -1,4 +1,4 @@
-// RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
+// RUN: %clangxx_msan -lintl -O0 -g %s -o %t && %run %t
#include <libintl.h>
#include <stdio.h>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D41013.126160.patch
Type: text/x-patch
Size: 322 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171208/74c1fde2/attachment.bin>
More information about the llvm-commits
mailing list