From 0b12c7e0cc5c929c850a4bd583c5b3ac74ee2175 Mon Sep 17 00:00:00 2001 From: r3st <104332533+r3sting@users.noreply.github.com> Date: Sat, 12 Apr 2025 16:20:33 -0600 Subject: [PATCH] Fix linker error --- qemu_mode/README.deferred_initialization_example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu_mode/README.deferred_initialization_example.md b/qemu_mode/README.deferred_initialization_example.md index d940d6b5..30fe1932 100644 --- a/qemu_mode/README.deferred_initialization_example.md +++ b/qemu_mode/README.deferred_initialization_example.md @@ -40,7 +40,7 @@ ALPINE_ROOT= FUZZ= sudo systemd-nspawn -D $ALPINE_ROOT --bind=$FUZZ:/fuzz CC=$(which clang) CFLAGS="-g" LDSHARED="clang -shared" python3 -m pip install /fuzz -clang $(python3-config --embed --cflags) $(python3-config --embed --ldflags) -o /fuzz/fuzz_harness /fuzz/fuzz_harness.c +clang $(python3-config --embed --cflags) -o /fuzz/fuzz_harness /fuzz/fuzz_harness.c $(python3-config --embed --ldflags) exit ```