We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I can't pass --DRT-gcopt to my vibe-d application.
--DRT-gcopt
Unrecognized command line option: --DRT-gcopt=profile:1
This is using a custom main function with:
if (!finalizeCommandLineOptions()) return; lowerPrivileges(); runEventLoop();
The text was updated successfully, but these errors were encountered:
Hmm, removing if (!finalizeCommandLineOptions) allows the options to pass down to the runtime.
if (!finalizeCommandLineOptions)
That function might need to recognize D runtime specific options.
Sorry, something went wrong.
Will be fixed by #1944
30a8ac9
No branches or pull requests
I can't pass
--DRT-gcopt
to my vibe-d application.This is using a custom main function with:
The text was updated successfully, but these errors were encountered: