From 2fad527ddf2b8d85df82468932ed724407f46be8 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Wed, 17 May 2017 12:57:18 +0100 Subject: Ignore --compile-pic option for JIT. Test: testrunner --host --pictest --jit Bug: 33192586 Change-Id: I1e05874752c6a3b448ffbeff9681637a35acda2a --- compiler/driver/compiler_options.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'compiler/driver/compiler_options.h') diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index 957ea99c49..5a8202159e 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -237,6 +237,10 @@ class CompilerOptions FINAL { bool ParseCompilerOption(const StringPiece& option, UsageFn Usage); + void SetNonPic() { + compile_pic_ = false; + } + const std::string& GetDumpCfgFileName() const { return dump_cfg_file_name_; } -- cgit v1.2.3-59-g8ed1b