Tagged Questions
3
votes
6answers
363 views
Are there good tips or tools for removing third party C and C++ libraries from a codebase? (OS X or Linux)
I am in the process of reducing and quarantining my usage of some libraries. Many existing programs I've written use these libraries directly. I would like the compiler (GCC and/or Clang in this case) ...
1
vote
0answers
41 views
Writing glue code to multiple versions of an external dependency
In my project, written in C, we have to use data types and constants defined in another language. We've parsed most of the definitions into a header file, but parsing it fully was not feasible so the ...