forked from WebKit/WebKit-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore weak external symbols in clang coverage builds using check-for…
…-weak-vtables-and-externals <https://webkit.org/b/228063> <rdar://problem/80477138> Reviewed by Alexey Proskuryakov. * Scripts/check-for-weak-vtables-and-externals: - Ignore weak symbols from llvm when building with coverage enabled. This fixes the build. * coverage/coverage.xcconfig: (UNEXPORTED_SYMBOL_LDFLAGS_FOR_COVERAGE): Remove. - Can't use -unexported_symbol and -exported_symbol together, so remove this. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@280021 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
851631a
commit e690651
Showing
3 changed files
with
20 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
2021-07-18 David Kilzer <[email protected]> | ||
|
||
Ignore weak external symbols in clang coverage builds using check-for-weak-vtables-and-externals | ||
<https://webkit.org/b/228063> | ||
<rdar://problem/80477138> | ||
|
||
Reviewed by Alexey Proskuryakov. | ||
|
||
* Scripts/check-for-weak-vtables-and-externals: | ||
- Ignore weak symbols from llvm when building with | ||
coverage enabled. This fixes the build. | ||
* coverage/coverage.xcconfig: | ||
(UNEXPORTED_SYMBOL_LDFLAGS_FOR_COVERAGE): Remove. | ||
- Can't use -unexported_symbol and -exported_symbol | ||
together, so remove this. | ||
|
||
2021-07-16 Kate Cheney <[email protected]> | ||
|
||
WKWebView javascript injection doesn't work if app includes WKAppBoundDomains | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
// Unexport weak external symbols from llvm coverage. | ||
UNEXPORTED_SYMBOL_LDFLAGS_FOR_COVERAGE = -Wl,-unexported_symbol -Wl,___llvm_profile_filename -Wl,-unexported_symbol -Wl,___llvm_profile_raw_version -Wl,-unexported_symbol -Wl,_lprofDirMode; | ||
|
||
OTHER_CFLAGS = $(inherited) -fprofile-instr-generate -fcoverage-mapping; | ||
OTHER_LDFLAGS = $(inherited) -fprofile-instr-generate $(UNEXPORTED_SYMBOL_LDFLAGS_FOR_COVERAGE); | ||
OTHER_LDFLAGS = $(inherited) -fprofile-instr-generate; |