mozilla / mentat

UNMAINTAINED A persistent, relational store inspired by Datomic and DataScript.
https://mozilla.github.io/mentat/
Apache License 2.0
1.65k stars 115 forks source link

Android build script which supports target specification #727

Closed grigoryk closed 6 years ago

grigoryk commented 6 years ago

A slight improvement over the current script. Most of the time during development I just want to rebuild one target, not all. Currently that means either typing out the cargo build.... command or commenting out lines in the script.

Recognized targets: x86, arm, arm64.

./android_build.sh - builds all supported targets ./android_build.sh x86 arm - builds for x86 and arm ./android_build.sh arm64 x86 dummy - fails and complains because dummy isn't a supported target.

grigoryk commented 6 years ago

I'll just merge this in, it's a trivial iteration over the current thing. Eventually we're going to want something more robust.