add all in one recipe
This commit is contained in:
24
justfile
24
justfile
@ -155,8 +155,6 @@ LINUX_BAREMETAL_INCLUDES := f"\
|
||||
-I{{WAMR_ROOT}}/core/shared/platform/baremetal \
|
||||
"
|
||||
|
||||
# TODO: Grave mistake to template the commands depending on the target... Should've used shebang recipes instead
|
||||
|
||||
[private]
|
||||
build-wasm-host-fail module:
|
||||
{{ CROSS_CC }} {{ CROSS_CFLAGS }} {{ CROSS_INCLUDES }} \
|
||||
@ -451,3 +449,25 @@ gdb module:
|
||||
[group("debug")]
|
||||
radare module:
|
||||
radare2 -AA -c "s dbg.os_main; pdf" {{ BUILD_DIR }}-{{ module }}/system.elf
|
||||
|
||||
# =================================================================================================================== #
|
||||
# AIO
|
||||
# =================================================================================================================== #
|
||||
|
||||
build module target="fail": (build-iso module target)
|
||||
|
||||
inject module:
|
||||
just clean {{ module }}
|
||||
just build {{ module }} "fail"
|
||||
|
||||
just start-db
|
||||
@echo "Waiting for database..."
|
||||
sleep 20
|
||||
|
||||
just trace {{ module }}
|
||||
just import {{ module }}
|
||||
just server {{ module }}
|
||||
just client {{ module }}
|
||||
just stop-server
|
||||
just result {{ module }}
|
||||
just resultbrowser
|
||||
|
||||
Reference in New Issue
Block a user