From b4e37a2c5ba67d5ca6866182241fb07dc2ec3dca Mon Sep 17 00:00:00 2001 From: yuanrui77 <163790237+yuanrui77@users.noreply.github.com> Date: Fri, 31 May 2024 13:38:28 +0800 Subject: [PATCH] Update README.md (#300) * Update README.md * Update README.md add some introductions to the development environment * Update README.md Optimized the introduction document --- tools/aot/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/aot/README.md b/tools/aot/README.md index 0b07816b..75519e04 100644 --- a/tools/aot/README.md +++ b/tools/aot/README.md @@ -85,7 +85,7 @@ You will get a native ELF file named `do_count.o`. You can link it with your program and execute it: ```sh -cd example +cd bpftime/tools/aot/example clang -O2 main.c do_count.o -o malloc ```