diff options
author | Wang Nan <wangnan0@huawei.com> | 2016-11-26 02:03:36 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-12-05 13:51:44 -0500 |
commit | a9495fe9dc63bee1166772b6f10e199ef1747892 (patch) | |
tree | f28475b3a79dce2db7a52cb56afc7f3c04a295bd /tools/perf/util/c++/clang.h | |
parent | 77dfa84a843c0bc935a6c8664f2556573e30845f (diff) |
perf clang: Allow passing CFLAGS to builtin clang
Improve getModuleFromSource() API to accept a cflags list. This feature
will be used to pass LINUX_VERSION_CODE and -I flags.
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Cc: Alexei Starovoitov <ast@fb.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Joe Stringer <joe@ovn.org>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Link: http://lkml.kernel.org/r/20161126070354.141764-13-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/c++/clang.h')
-rw-r--r-- | tools/perf/util/c++/clang.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/perf/util/c++/clang.h b/tools/perf/util/c++/clang.h index 90aff0162f1c..b4fc2a96b79d 100644 --- a/tools/perf/util/c++/clang.h +++ b/tools/perf/util/c++/clang.h | |||
@@ -4,16 +4,20 @@ | |||
4 | #include "llvm/ADT/StringRef.h" | 4 | #include "llvm/ADT/StringRef.h" |
5 | #include "llvm/IR/LLVMContext.h" | 5 | #include "llvm/IR/LLVMContext.h" |
6 | #include "llvm/IR/Module.h" | 6 | #include "llvm/IR/Module.h" |
7 | #include "llvm/Option/Option.h" | ||
7 | #include <memory> | 8 | #include <memory> |
9 | |||
8 | namespace perf { | 10 | namespace perf { |
9 | 11 | ||
10 | using namespace llvm; | 12 | using namespace llvm; |
11 | 13 | ||
12 | std::unique_ptr<Module> | 14 | std::unique_ptr<Module> |
13 | getModuleFromSource(StringRef Name, StringRef Content); | 15 | getModuleFromSource(opt::ArgStringList CFlags, |
16 | StringRef Name, StringRef Content); | ||
14 | 17 | ||
15 | std::unique_ptr<Module> | 18 | std::unique_ptr<Module> |
16 | getModuleFromSource(StringRef Path); | 19 | getModuleFromSource(opt::ArgStringList CFlags, |
20 | StringRef Path); | ||
17 | 21 | ||
18 | } | 22 | } |
19 | #endif | 23 | #endif |