Home | History | Annotate | Download | only in chre
      1 #!/bin/bash
      2 
      3 # Quit if any command produces an error.
      4 set -e
      5 
      6 # Build and run the CHRE simulator.
      7 make google_x86_linux -j
      8 ./out/google_x86_linux/libchre
      9