Is it even possible to build Google Crashpad into DLLs instead of static libraries? I have a cross-platform application I'm trying to integrate the crashpad to, however the build system of the crashpad is limited to its defaults, disallowing one to change a toolchain without tons of pain, thus I have to build it with MSVC and only static libs (the build configuration is unable to build DLLs correctly despite some modifications of BUILD.gn files with crashpad_loadable_module). My application is built using MinGW for Windows, so it is not an option to use .lib-files generated by MSVC, therefore I need to either build it to DLL or build with MinGW. I gave up trying to build it with MinGW as there thousands of errors and missing header files. And since I can't build it to DLL (there are errors during build some test tools or something) I realized that I can try to combine required .lib files into DLL with MSVC and afterwards to use it with MinGW, but seems like it is also not a solution as MSVC refuses to build statics libs into the dynamic one. Could you please advice me some ways to solve the problem? thanks in advance
Compiling Google Crashpad as a DLL on Windows
126 Views Asked by G-Virus At
1
There are 1 best solutions below
Related Questions in VISUAL-C++
- I want to be able to use 4 different variables in a select statement in c ++
- llvm headers do not compile under msvc 2013
- VC++ .net: Functionality from managed DLL is not exported
- Add a picture to Picture Control in a dialog box (error RC2108: expected numerical dialog constant)
- Within a .vcxproj file what are the possible values for the <ConfigurationType> and what do those values mean?
- converting string to a double in visual c++ by parsing
- How to integrate opencv C++ codings with windows application?
- Create string with ESC characters
- What does the thing between "class" and the class name in VC++ mean?
- How to assign (Root)Folder ID in C++? Wherein, those files and folder under it would have the same ID as the RootFolder
- How to convert CString to long? VC++
- How to initialize a String^ *
- How to correctly implement methods of a class returning "this" in Managed C++?
- Non-managed referenced code strangely, "magically" changes its state for no reason when wrapped in managed
- Windows application using libusb: runtime error due to mutex lock
Related Questions in DLL
- C++ using std::vector across boundaries
- Linking to a static lib compiled with MSVC
- What are MATLAB DLLS?
- VC++ .net: Functionality from managed DLL is not exported
- DLL being marked as DELETEPENDING
- ASP.NET Web Forms give error while connecting to Oracle 11g
- Air Native Extensions: Released Air App w/Windows Native Extension works fine on develpment PC but not on other computers
- WiX and custom extensions for primary output?
- Using different versions of the same DLL in a project
- visual c++ - missing unrelated DLLs
- Error executing SSIS Package
- C++ Access violation write to 0x00000000 in dll in mql4
- How can I read embedded .resx in different assembly
- Running two versions of same Dll parallel in Asp.Net
- Call class member of c++ DLL from c#
Related Questions in MINGW-W64
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- g++ linker unable to find winsock functions
- C++ MinGW x64 Debugging - value of std::string doesn't display properly
- Python 3.4 ctypes wrap for a mingw-w64 compiled C-based dll
- cURL link error with MinGW-w64 GCC on MSYS2
- How to find PATH variable of installed MinGW GCC compiler?
- Simple thread/mutex test application is crashing
- MinGW-W64 linker skipping incompatible files when searching for third-party static libraries
- type errors in Mingw-x64
- Wrapper for `__m256` Producing Segmentation Fault with Constructor - Windows 64 + MinGW + AVX Issues
- MinGW64 Is Incapable of 32 Byte Stack Alignment (Required for AVX on Windows x64), Easy Work Around or Switch Compilers?
- C++ GCC/MinGW Paths: ssp, ext, tr1; parallel, ext, bits, experimental
- GIT bash on Windows: VIM doesn't find Python3
- libffi installed and recogonized by pkg-config, but not by glib
- MSYS2 specify version of mingw32 or mingw64 gcc
Related Questions in CRASHPAD
- Integrating Crashpad
- Where can I find the report that crashpad generate?
- No Module error from minidump_stackwalk in Breakpad
- Debugging Chrome Crashpad crash report from Mac
- Crash a thread in a Win32 application
- Integrating Crashpad with Qt on Linux
- Integrating Crashpad with a Windows Qt application
- libcrashpad_handler.so: library "libc++_shared.so" not found: needed by main executable
- Crashpad how to set the dump level in windows? I want to adjust to Full dump。
- Integrating Crashpad with MacOS Qt application
- How to get crashed process id from a minidump file
- Compiling Google Crashpad as a DLL on Windows
- Crashpad not generating a crash report after qml is executed
- How do I fix a crashpad compilation error (for windows)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I found a fork of crashpad that is using CMake as a build system and has a patch for MinGW. After a couple of tweaks I have successfully built it as static libraries and now it generates dump-files very well. Not us but the crashpad devs should care of such things