-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Implement LoadLibraryErrorTracker #69842
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -3910,8 +3910,14 @@ | |||
| <data name="Arg_EntryPointNotFoundExceptionParameterizedNoLibrary" xml:space="preserve"> | ||||
| <value>Unable to find an entry point named '{0}' in native library.</value> | ||||
| </data> | ||||
| <data name="Arg_DllNotFoundExceptionParameterized" xml:space="preserve"> | ||||
| <value>Unable to load native library '{0}' or one of its dependencies.</value> | ||||
| <data name="DllNotFound_Windows" xml:space="preserve"> | ||||
| <value>Unable to load DLL '{0}' or one of its dependencies: {1}</value> | ||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since {1} seems likely to be a sentence, I think it reads better (and perhaps it's more conventional) to separate with a period instead of a colon. For example we do this in the console output for FailFast. Etc
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the existing string from mscorrc: runtime/src/coreclr/dlls/mscorrc/mscorrc.rc Line 165 in abca8a1
|
||||
| </data> | ||||
| <data name="DllNotFound_Linux" xml:space="preserve"> | ||||
| <value>Unable to load shared library '{0}' or one of its dependencies. In order to help diagnose loading problems, consider using a tool like strace. If you're using glibc, consider setting the LD_DEBUG environment variable: {1}</value> | ||||
| </data> | ||||
| <data name="DllNotFound_Mac" xml:space="preserve"> | ||||
| <value>Unable to load shared library '{0}' or one of its dependencies. In order to help diagnose loading problems, consider setting the DYLD_PRINT_LIBRARIES environment variable: {1}</value> | ||||
| </data> | ||||
| <data name="InvalidOperation_ComInteropRequireComWrapperInstance" xml:space="preserve"> | ||||
| <value>COM Interop requires ComWrapper instance registered for marshalling.</value> | ||||
|
|
||||
Uh oh!
There was an error while loading. Please reload this page.