build_c_embed.sh 241 B

123456789101112
  1. #!/bin/bash
  2. #
  3. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  4. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  5. #
  6. set -e
  7. cd c-embed
  8. rm -fr build && mkdir build
  9. cmake $1 -B build
  10. cmake --build build -j >/dev/null 2>&1