Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: replace add_compile_definitions #321

Merged
merged 1 commit into from
Dec 26, 2019

Conversation

compnerd
Copy link
Contributor

Replace add_compile_definitions with add_compile_options since the
former was introduced in 3.12.

Replace `add_compile_definitions` with `add_compile_options` since the
former was introduced in 3.12.
@compnerd
Copy link
Contributor Author

@jgm sorry about the compatibility issue, this should fix that.

@jgm jgm merged commit 78168bf into commonmark:master Dec 26, 2019
@jgm
Copy link
Member

jgm commented Dec 26, 2019

Thank you!

@compnerd compnerd deleted the compatibility branch December 26, 2019 23:45
@jgm
Copy link
Member

jgm commented Jan 11, 2020

@compnerd I've been seeing this build failure on our fuzzing setup; I don't know if it has to do with your changes, but they're the most recent changes to the build infrastructure. Also paging @nwellnhof

https://oss-fuzz-build-logs.storage.googleapis.com/log-0d4dbbcd-58ba-4341-9359-708e4381d3df.txt

The error is

Step #4: clang-10: error: no such file or directory: 'build/src/libcmark.a'

Is it possible that one of the changes you made broke this?
Here is the bug report: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=19805#c2

@compnerd
Copy link
Contributor Author

I think its probably related ...

Step #4: + clang++ -O1 -fno-omit-frame-pointer -gline-tables-only -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -stdlib=libc++ -fsanitize=fuzzer cmark_fuzzer.o build/src/libcmark.a -o /workspace/out/address/cmark_fuzzer

Note that it is trying to link against libcmark.a, yet the build will be producing libcmark_static.a as per https://github.com/commonmark/cmark/blob/master/src/CMakeLists.txt#L6 (which existed prior to my changes).

I don't immediately see where this command is coming from:

Step #4: + clang++ -O1 -fno-omit-frame-pointer -gline-tables-only -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -stdlib=libc++ -fsanitize=fuzzer cmark_fuzzer.o build/src/libcmark.a -o /workspace/out/address/cmark_fuzzer

@nwellnhof
Copy link
Contributor

No, it was libcmark.a before. This should fix it: #324

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants