can't find out what the license for the libgcc_s_dw2-1.dll is? one of our developers has given me a program that includes this dll and I don't know if I can use it within our application. I think he has developed it using QT creator and MinGW. anyone know the license for this dll?
Asked
Active
Viewed 1,417 times
0
-
4I'm voting to close this question as off-topic because it is about licensing or legal issues, not programming or software development. [See here](http://meta.stackoverflow.com/questions/274963/questions-about-licensing/274964#274964) and [here](http://meta.stackexchange.com/questions/139804/can-licensing-questions-ever-be-on-topic) for details, and the [help] for more. – JasonMArcher Jun 14 '15 at 00:05
1 Answers
1
libgcc is a part of GCC which mean it's under GPL licence, for more information:
The GCC low-level runtime library

ahmed
- 5,430
- 1
- 20
- 36
-
I think there's an exception for libgcc so it can be statically linked without contaminating the code. – Jun 29 '15 at 16:40
-
It is under GPL with exception for using it with GPL-incompatible software: https://www.gnu.org/licenses/gcc-exception-3.1-faq.en.html – Alexander Ushakov Nov 19 '19 at 13:38