Skip to content

Commit

Permalink
Cherry-pick 80eedd6. rdar://114455833
Browse files Browse the repository at this point in the history
    Add support for `make LIBFUZZER=YES`
    https://bugs.webkit.org/show_bug.cgi?id=259369
    rdar://112621746

    Reviewed by Alex Christensen.

    * Makefile.shared:
    - Add support for `make LIBFUZZER=YES` and
      `make LIBFUZZER=NO`.

    Canonical link: https://commits.webkit.org/266593@main

Identifier: 265870.443@safari-7616-branch
  • Loading branch information
David Kilzer authored and Dan Robson committed Aug 25, 2023
1 parent 13af4ab commit 47062a2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile.shared
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,14 @@ CONFIG_OPTIONS += --no-asan
endif
endif

ifeq ($(LIBFUZZER),YES)
CONFIG_OPTIONS += --libfuzzer
else
ifeq ($(LIBFUZZER),NO)
CONFIG_OPTIONS += --no-libfuzzer
endif
endif

ifeq ($(TSAN),YES)
CONFIG_OPTIONS += --tsan
else
Expand Down

0 comments on commit 47062a2

Please sign in to comment.