[GRADLE-3055] C native binaries are linked to C++ runtime. Created: 30/Mar/14 Updated: 10/Feb/17 Resolved: 10/Feb/17 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | ||
Reporter: | Gradle Forums | Assignee: | Unassigned |
Resolution: | Won't Fix | Votes: | 0 |
Description |
It seems that gcc is being used for compilation of object files and g++ for linking. This results in the C++ runtime library being linked in. You can verify this buy doing a build on Linux with gcc toolchain and run the ldd program on a compiled binary. $ ldd build/install/mainExecutable/lib/main In the GCC universe, it is not normal to link the C++ runtime library (normally libstdc++) into a C program! The correct output would be more like this: $ gcc -o main build/objectFiles/mainExecutable/mainC/hello_gradle.o I've found this both in a [simple example C project]([1]https://github.com/Spidey01/HelloGrad...) and in more [complex C projects]([2]https://github.com/Spidey01/lua.gradle). Note: This is all using Gradle 1.11 on Debian stable (amd64) and stock gcc (4.7.2). |
Comments |
Comment by Gradle Forums [ 30/Mar/14 ] |
Hello Terry, model { toolChains { gcc(Gcc) { linker.executable = 'gcc' }} } cheers, |
Comment by Benjamin Muschko [ 15/Nov/16 ] |
As announced on the Gradle blog we are planning to completely migrate issues from JIRA to GitHub. We intend to prioritize issues that are actionable and impactful while working more closely with the community. Many of our JIRA issues are inactionable or irrelevant. We would like to request your help to ensure we can appropriately prioritize JIRA issues you’ve contributed to. Please confirm that you still advocate for your JIRA issue before December 10th, 2016 by:
We look forward to collaborating with you more closely on GitHub. Thank you for your contribution to Gradle! |
Comment by Benjamin Muschko [ 10/Feb/17 ] |
Thanks again for reporting this issue. We haven't heard back from you after our inquiry from November 15th. We are closing this issue now. Please create an issue on GitHub if you still feel passionate about getting it resolved. |