| 12345678910111213141516171819 |
- #!/bin/bash
- # Copyright (C) 2019 Intel Corporation. All rights reserved.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- PLATFORM=$(uname -s | tr A-Z a-z)
- readonly IWASM_CMD="../../../product-mini/platforms/${PLATFORM}/build/iwasm"
- echo "============> run dhrystone native"
- ./dhrystone_native
- echo "============> run dhrystone.aot"
- ${IWASM_CMD} dhrystone.aot
- if [[ ${PLATFORM} == "linux" ]]; then
- echo "============> run dhrystone_segue.aot"
- ${IWASM_CMD} dhrystone_segue.aot
- fi
|