From dd96996c7091c5c382e52e5faeacc2ef3288e9ec Mon Sep 17 00:00:00 2001 From: Rich Kadel Date: Thu, 27 Aug 2020 11:52:36 -0700 Subject: [PATCH] Add InstrProfilingPlatformFuchsia.c to profiler_builtins All other Platform files included in `llvm-project/compiler-rt` were present, except Fuchsia. Now that there is a functional end-to-end version of `-Zinstrument-coverage`, I need to start building and testing coverage-enabled Rust programs on Fuchsia, and this file is required. --- library/profiler_builtins/build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/profiler_builtins/build.rs b/library/profiler_builtins/build.rs index b674f73ebf390..2a5d5853fec64 100644 --- a/library/profiler_builtins/build.rs +++ b/library/profiler_builtins/build.rs @@ -20,6 +20,7 @@ fn main() { "InstrProfilingMergeFile.c", "InstrProfilingNameVar.c", "InstrProfilingPlatformDarwin.c", + "InstrProfilingPlatformFuchsia.c", "InstrProfilingPlatformLinux.c", "InstrProfilingPlatformOther.c", "InstrProfilingPlatformWindows.c",