Reputation: 757
I don't understand why there are often two files in libraries, one with -sources
suffix.
Here's what i mean
Upvotes: 4
Views: 90
Reputation: 710
To add to the answer below, the -source archive is the actual source code, while the other file is the compiled version of it.
Upvotes: 0
Reputation: 1219
The sources are useful if you want to step into the library when debugging. You don't need them, but they might save you if you can't understand why the library behaves in a certain way.
Upvotes: 7