-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix undefined symbols specified for linking (#793)
We made a mistake in PR #792. We split up the very long line in the Makefile to specify a symbol per line. This accidentally broke how the linker interprets these options. Specify the symbols per line, but on each line also include the `-Wl,` prefix to specify the liker option. Somehow the multi line option value for `-Wl,` didn't work.
- Loading branch information
Showing
2 changed files
with
21 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
bump: "patch" | ||
type: "fix" | ||
--- | ||
|
||
Fix compile-time error about symbol names starting with a comma. Updated the linking script to not include the comma. |
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