Skip to content

Commit

Permalink
Use CC as linker before falling back to default value in fuzzing buil…
Browse files Browse the repository at this point in the history
…d script.
  • Loading branch information
atoppi committed Mar 26, 2019
1 parent d76a251 commit e6df534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzzers/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FUZZ_CC=${CC-$DEFAULT_CC}

# Set linker from the environment (CXX is used as linker in oss-fuzz)
# Fallback to clang
FUZZ_CCLD=${CXX-$DEFAULT_CCLD}
FUZZ_CCLD=${CXX-${CC-$DEFAULT_CCLD}}

# Set CFLAGS from the environment
# Fallback to using address and undefined behaviour sanitizers
Expand Down

0 comments on commit e6df534

Please sign in to comment.