diff options
author | 2021-04-01 15:33:05 -0700 | |
---|---|---|
committer | 2021-04-26 22:34:29 -0700 | |
commit | a7b57b709e99fbb1be31627643fc51d619b07bfe (patch) | |
tree | 0606cf1ce36dd65c5ea1dbce465425db63a90fcf /build.py | |
parent | 29d739ee90ec07c18194ea5aba3cba93267644cf (diff) |
Change build.py ordering for rust and main
Rust now links to C++ instead of C++ to Rust so change the build
ordering to match.
Bug: 183208689
Tag: #floss
Test: atest --host bluetooth_test_gd
Change-Id: I71518b6efc9e45b880baeb2b7db16bbb0006a6e5
Diffstat (limited to 'build.py')
-rwxr-xr-x | build.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -414,8 +414,8 @@ class HostBuild(): """ self._target_prepare() self._target_tools() - self._target_rust() self._target_main() + self._target_rust() def build(self): """ Builds according to self.target |