diff --git a/kodev b/kodev index 3757bae51..4e0510813 100755 --- a/kodev +++ b/kodev @@ -704,6 +704,7 @@ usage: test [front|base] OPTIONS: --tags=TAGS only run tests with given tags + --no-debug no debugging symbols (default for target devices) " while [[ "${1}" == '-'* ]]; do PARAM=$(echo "${1}" | awk -F= '{print $1}') @@ -712,6 +713,10 @@ OPTIONS: --graph) graph_memory=1 ;; + --no-debug) + export KODEBUG= + KODEBUG_NO_DEFAULT=1 + ;; --tags) opts="--tags=${VALUE}" ;; @@ -739,7 +744,7 @@ OPTIONS: } set -e - check_submodules && make + check_submodules && kodev-build setup_env make "${EMU_DIR}/.busted"