summaryrefslogtreecommitdiffstats
path: root/runtime/parsed_options.cc
diff options
context:
space:
mode:
authorCalin Juravle <calin@google.com>2014-08-07 14:53:41 +0100
committerAndreas Gampe <agampe@google.com>2014-08-08 12:02:29 -0700
commit421b6466977d4b1ccd453f23b7b492f219099702 (patch)
tree148d8c22f65bc6136fec35247c397ac61f9526c8 /runtime/parsed_options.cc
parent76c95026eafdd1e2766122002323f7794afd7554 (diff)
downloadart-421b6466977d4b1ccd453f23b7b492f219099702.tar.gz
art-421b6466977d4b1ccd453f23b7b492f219099702.tar.bz2
art-421b6466977d4b1ccd453f23b7b492f219099702.zip
Get the native bridge library from the framework.
Framework now passes the name of the native bridge to the runtime so there's no need to do the reading in libart. Bug: 16843953 Change-Id: I59b5c3050c6e1a37a627a8c98d7085e91487c32c
Diffstat (limited to 'runtime/parsed_options.cc')
-rw-r--r--runtime/parsed_options.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/parsed_options.cc b/runtime/parsed_options.cc
index 12f9f33f5f..cf98e6e1d0 100644
--- a/runtime/parsed_options.cc
+++ b/runtime/parsed_options.cc
@@ -599,7 +599,7 @@ bool ParsedOptions::Parse(const RuntimeOptions& options, bool ignore_unrecognize
Usage("Unknown -Xverify option %s\n", verify_mode.c_str());
return false;
}
- } else if (StartsWith(option, "-XX:NativeBridge=")) {
+ } else if (StartsWith(option, "-XX:NativeBridgeLibrary=")) {
if (!ParseStringAfterChar(option, '=', &native_bridge_library_string_)) {
return false;
}