I am peeking through the code of torsocks where as you'll notice, the .travis.yml file instructs Travis CI to test against both clang and gcc.
compiler:
- clang
- gcc
I'm still learning and this caught my attention. Why both? Why not just one or the other? Thanks!