Can libclang tell me if a function has weak linkage?












0















I am using the libclang C interface to Clang, and trying to figure out if the function definition at my current CXCursor has weak linkage, i.e. was declared with _attribute__((weak))



clang_Cursor_hasAttrs(cursor) tells me that the function with weak linkage does indeed have one or more attributes, but doesn't tell me which ones.



I have been looking through the documentation of libclang at https://clang.llvm.org/doxygen/group__CINDEX__CURSOR__MANIP.html and also at the header file clang-c/Index.h but cannot find any function to extract this information.



Is there a way to do this in the C interface, or do I need to use the underlying C++ interface of Clang to achieve this?










share|improve this question




















  • 1





    according to wikipedia: nm | grep someObjectFile should output a weak function symbol is marked with "W" if a weak default definition is available, and with "w" if it is not if it is marked with a U that would be external linkage... and T would be standard default linkage

    – Grady Player
    Nov 15 '18 at 23:05








  • 1





    nm works on an object files, libclang on source and its AST ...

    – johannes
    Nov 15 '18 at 23:55











  • well I didn't put in an answer... I just made a comment on how you can figure that out.

    – Grady Player
    Nov 16 '18 at 2:58
















0















I am using the libclang C interface to Clang, and trying to figure out if the function definition at my current CXCursor has weak linkage, i.e. was declared with _attribute__((weak))



clang_Cursor_hasAttrs(cursor) tells me that the function with weak linkage does indeed have one or more attributes, but doesn't tell me which ones.



I have been looking through the documentation of libclang at https://clang.llvm.org/doxygen/group__CINDEX__CURSOR__MANIP.html and also at the header file clang-c/Index.h but cannot find any function to extract this information.



Is there a way to do this in the C interface, or do I need to use the underlying C++ interface of Clang to achieve this?










share|improve this question




















  • 1





    according to wikipedia: nm | grep someObjectFile should output a weak function symbol is marked with "W" if a weak default definition is available, and with "w" if it is not if it is marked with a U that would be external linkage... and T would be standard default linkage

    – Grady Player
    Nov 15 '18 at 23:05








  • 1





    nm works on an object files, libclang on source and its AST ...

    – johannes
    Nov 15 '18 at 23:55











  • well I didn't put in an answer... I just made a comment on how you can figure that out.

    – Grady Player
    Nov 16 '18 at 2:58














0












0








0








I am using the libclang C interface to Clang, and trying to figure out if the function definition at my current CXCursor has weak linkage, i.e. was declared with _attribute__((weak))



clang_Cursor_hasAttrs(cursor) tells me that the function with weak linkage does indeed have one or more attributes, but doesn't tell me which ones.



I have been looking through the documentation of libclang at https://clang.llvm.org/doxygen/group__CINDEX__CURSOR__MANIP.html and also at the header file clang-c/Index.h but cannot find any function to extract this information.



Is there a way to do this in the C interface, or do I need to use the underlying C++ interface of Clang to achieve this?










share|improve this question
















I am using the libclang C interface to Clang, and trying to figure out if the function definition at my current CXCursor has weak linkage, i.e. was declared with _attribute__((weak))



clang_Cursor_hasAttrs(cursor) tells me that the function with weak linkage does indeed have one or more attributes, but doesn't tell me which ones.



I have been looking through the documentation of libclang at https://clang.llvm.org/doxygen/group__CINDEX__CURSOR__MANIP.html and also at the header file clang-c/Index.h but cannot find any function to extract this information.



Is there a way to do this in the C interface, or do I need to use the underlying C++ interface of Clang to achieve this?







c++ c clang






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 '18 at 1:24









shizhen

3,82541336




3,82541336










asked Nov 15 '18 at 23:01









ygramoelygramoel

1119




1119








  • 1





    according to wikipedia: nm | grep someObjectFile should output a weak function symbol is marked with "W" if a weak default definition is available, and with "w" if it is not if it is marked with a U that would be external linkage... and T would be standard default linkage

    – Grady Player
    Nov 15 '18 at 23:05








  • 1





    nm works on an object files, libclang on source and its AST ...

    – johannes
    Nov 15 '18 at 23:55











  • well I didn't put in an answer... I just made a comment on how you can figure that out.

    – Grady Player
    Nov 16 '18 at 2:58














  • 1





    according to wikipedia: nm | grep someObjectFile should output a weak function symbol is marked with "W" if a weak default definition is available, and with "w" if it is not if it is marked with a U that would be external linkage... and T would be standard default linkage

    – Grady Player
    Nov 15 '18 at 23:05








  • 1





    nm works on an object files, libclang on source and its AST ...

    – johannes
    Nov 15 '18 at 23:55











  • well I didn't put in an answer... I just made a comment on how you can figure that out.

    – Grady Player
    Nov 16 '18 at 2:58








1




1





according to wikipedia: nm | grep someObjectFile should output a weak function symbol is marked with "W" if a weak default definition is available, and with "w" if it is not if it is marked with a U that would be external linkage... and T would be standard default linkage

– Grady Player
Nov 15 '18 at 23:05







according to wikipedia: nm | grep someObjectFile should output a weak function symbol is marked with "W" if a weak default definition is available, and with "w" if it is not if it is marked with a U that would be external linkage... and T would be standard default linkage

– Grady Player
Nov 15 '18 at 23:05






1




1





nm works on an object files, libclang on source and its AST ...

– johannes
Nov 15 '18 at 23:55





nm works on an object files, libclang on source and its AST ...

– johannes
Nov 15 '18 at 23:55













well I didn't put in an answer... I just made a comment on how you can figure that out.

– Grady Player
Nov 16 '18 at 2:58





well I didn't put in an answer... I just made a comment on how you can figure that out.

– Grady Player
Nov 16 '18 at 2:58












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53329084%2fcan-libclang-tell-me-if-a-function-has-weak-linkage%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53329084%2fcan-libclang-tell-me-if-a-function-has-weak-linkage%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

List item for chat from Array inside array React Native

Thiostrepton

Caerphilly