From 5fba27ad52eb7b140d5e5643d2601da9fb62bbe3 Mon Sep 17 00:00:00 2001 From: diewufeihong <30541904+diewufeihong@users.noreply.github.com> Date: Wed, 1 Dec 2021 19:11:25 +0800 Subject: [PATCH] Update collab_fuzz_wrapper.in Add "-lm" to line 72 to solve the build error caused by the missing link command. --- llvm-passes/wrapper/collab_fuzz_wrapper.in | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm-passes/wrapper/collab_fuzz_wrapper.in b/llvm-passes/wrapper/collab_fuzz_wrapper.in index dfd166a..7c7ccc6 100644 --- a/llvm-passes/wrapper/collab_fuzz_wrapper.in +++ b/llvm-passes/wrapper/collab_fuzz_wrapper.in @@ -69,6 +69,7 @@ rt_libs = { "-Wl,--whole-archive", "@INST_COUNT_WRAPPER_RTLIB_PATH@", "-Wl,--no-whole-archive", + "-lm", ], [], ),