-
Notifications
You must be signed in to change notification settings - Fork 43
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
Shell script to build in lib for OSX #83
Comments
What do you mean exactly? You mean static building, then that option is already available. |
OSX is being a pain, even with static build I have a SEG and I can't put breakpoints into the lib to debug it. bt in gdb gives Program received signal SIGSEGV, Segmentation fault. |
Wow, you're missing debug symbols. In cmake, by default, we build debug builds (and you can expressly set this if you want). The result is that it adds the following flags: Can you verify that this is indeed what is happening? |
Is it possible that OSX/Xcode is stripping the symbols off? |
Closing this since that static build provides what this thread was about. |
Putting together a cmake option to build as single file ... default off.
This will help to debug on systems that make it difficult to debug libraries ... like osx and cygwin
The text was updated successfully, but these errors were encountered: