This is an archive of the discontinued LLVM Phabricator instance.

[libFuzzer] Add a missing include_directories.
ClosedPublic

Authored by dokyungs on Jul 23 2020, 4:22 PM.

Details

Summary

FuzzerInterceptors.cpp includes <sanitizer/common_interface_defs.h>, and this patch adds a missing include_directories to make sure the included file is found.

Diff Detail

Event Timeline

dokyungs created this revision.Jul 23 2020, 4:22 PM
Herald added a project: Restricted Project. · View Herald TranscriptJul 23 2020, 4:22 PM
Herald added subscribers: Restricted Project, mgorny. · View Herald Transcript
morehouse accepted this revision.Jul 23 2020, 4:32 PM

We should avoid linking with sanitizer_common, but as long as its only includes I think we're fine.

This revision is now accepted and ready to land.Jul 23 2020, 4:32 PM
This revision was automatically updated to reflect the committed changes.

I've confirmed that this fixes our builds, thank you.