-
Notifications
You must be signed in to change notification settings - Fork 51
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
add 'linkerArgs' config option #1103
add 'linkerArgs' config option #1103
Conversation
@kristofdho This looks a good feature, making it more flexible to link in other libraries. Do you have a particular usecase in mind you want to share? |
We were having trouble using the fontmanager library, as described in #945 We worked around that by having a dummy project to compile with Sidenote, statically linking fontmanager & freetype also worked in standard duplicate symbols
That first one still persists, although the exe seems to work fine now: |
Would suggest some documentation & examples on the purpose and usage of this configuration. Piecing the puzzle together from dozens of Github tickets is sub-optimal. |
Excuse me, I'm struggling with this question, is there a good solution for Fontmanager on javafx? |
@Ggbr-TaoLi you can ignore everything about static linking in what you quoted. So adding awt.lib is not an option. Plain native-image has moved to dynamic linking for awt entirely. I wouldn't say there is a good solution for fontmanager on javafx, but it does work. I still have the |
This adds a configuration option to externally configure additional linker flags
Issue
Fixes #1101
Progress