Alex Trebek via llvm-dev
2019-Jun-09 22:41 UTC
[llvm-dev] Question about the mailing list.
I'm trying to build the example C++ file on the DFSan sanitizer page: https://clang.llvm.org/docs/DataFlowSanitizer.html However, i'ts complaining about unknown types (intptr_t, uint16_t, uint32_t, uint64_t). I got it to build after adding typedefs from stdint.h and sys/types.h to the sanitizer/common_interface_defs.h header file: typedef __intptr_t intptr_t; typedef u_int16_t uint16_t; typedef u_int32_t uint32_t; typedef u_int64_t uint64_t; However, something about that seems so WRONG that something else must be going on also and I'd like to get to the bottom of this so we have a working DFSan example (and so I can use it :D) On Sun, Jun 9, 2019 at 2:58 PM Doerfert, Johannes via llvm-dev < llvm-dev at lists.llvm.org> wrote:> It depends on what kind of user questions you have, but llvm-dev and > cfe-dev might actually be the right lists. > Even if not, people can redirect you better once they see the questions :) > > Btw. You can also try the llvm IRC channel. > > Cheers, > Johannes > > ________________________________________ > From: llvm-dev <llvm-dev-bounces at lists.llvm.org> on behalf of Steven > Truppe via llvm-dev <llvm-dev at lists.llvm.org> > Sent: Sunday, June 9, 2019 05:42 > To: LLVM Developers Mailing List > Subject: [llvm-dev] Question about the mailing list. > > Hello everyone, > > i'm not able to find the llvm mailing list for user questions, can you > help me finding it please ? > > also the clang mailing list can't be found (only llvm-dev and clang-dev). > > > best regards! > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190609/8b48de55/attachment.html>
Doerfert, Johannes via llvm-dev
2019-Jun-09 22:47 UTC
[llvm-dev] Question about the mailing list.
What about including stdint.h before the sanitizer header? It seems the example is missing something either way. Get Outlook for Android<https://aka.ms/ghei36> ________________________________ From: Alex Trebek <alexquebec23 at gmail.com> Sent: Sunday, June 9, 2019 5:41:59 PM To: Doerfert, Johannes Cc: Steven Truppe; LLVM Developers Mailing List Subject: Re: [llvm-dev] Question about the mailing list. I'm trying to build the example C++ file on the DFSan sanitizer page: https://clang.llvm.org/docs/DataFlowSanitizer.html However, i'ts complaining about unknown types (intptr_t, uint16_t, uint32_t, uint64_t). I got it to build after adding typedefs from stdint.h and sys/types.h to the sanitizer/common_interface_defs.h header file: typedef __intptr_t intptr_t; typedef u_int16_t uint16_t; typedef u_int32_t uint32_t; typedef u_int64_t uint64_t; However, something about that seems so WRONG that something else must be going on also and I'd like to get to the bottom of this so we have a working DFSan example (and so I can use it :D) On Sun, Jun 9, 2019 at 2:58 PM Doerfert, Johannes via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>> wrote: It depends on what kind of user questions you have, but llvm-dev and cfe-dev might actually be the right lists. Even if not, people can redirect you better once they see the questions :) Btw. You can also try the llvm IRC channel. Cheers, Johannes ________________________________________ From: llvm-dev <llvm-dev-bounces at lists.llvm.org<mailto:llvm-dev-bounces at lists.llvm.org>> on behalf of Steven Truppe via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>> Sent: Sunday, June 9, 2019 05:42 To: LLVM Developers Mailing List Subject: [llvm-dev] Question about the mailing list. Hello everyone, i'm not able to find the llvm mailing list for user questions, can you help me finding it please ? also the clang mailing list can't be found (only llvm-dev and clang-dev). best regards! _______________________________________________ LLVM Developers mailing list llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev _______________________________________________ LLVM Developers mailing list llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190609/ea5ae57f/attachment.html>
Alex Trebek via llvm-dev
2019-Jun-09 23:21 UTC
[llvm-dev] Question about the mailing list.
Unfortunately I did that and it didnt fix it until i edited that dfsan and common interfaces file to include the typedefs Sent from my iPhone> On Jun 9, 2019, at 17:47, Doerfert, Johannes <jdoerfert at anl.gov> wrote: > > What about including stdint.h before the sanitizer header? It seems the example is missing something either way. > > Get Outlook for Android > > From: Alex Trebek <alexquebec23 at gmail.com> > Sent: Sunday, June 9, 2019 5:41:59 PM > To: Doerfert, Johannes > Cc: Steven Truppe; LLVM Developers Mailing List > Subject: Re: [llvm-dev] Question about the mailing list. > > I'm trying to build the example C++ file on the DFSan sanitizer page: > https://clang.llvm.org/docs/DataFlowSanitizer.html > > However, i'ts complaining about unknown types (intptr_t, uint16_t, uint32_t, uint64_t). > I got it to build after adding typedefs from stdint.h and sys/types.h to the sanitizer/common_interface_defs.h header file: > typedef __intptr_t intptr_t; > typedef u_int16_t uint16_t; > typedef u_int32_t uint32_t; > typedef u_int64_t uint64_t; > > However, something about that seems so WRONG that something else must be going on also and I'd like to get to the bottom of this so we have a working DFSan example (and so I can use it :D) > > > >> On Sun, Jun 9, 2019 at 2:58 PM Doerfert, Johannes via llvm-dev <llvm-dev at lists.llvm.org> wrote: >> It depends on what kind of user questions you have, but llvm-dev and cfe-dev might actually be the right lists. >> Even if not, people can redirect you better once they see the questions :) >> >> Btw. You can also try the llvm IRC channel. >> >> Cheers, >> Johannes >> >> ________________________________________ >> From: llvm-dev <llvm-dev-bounces at lists.llvm.org> on behalf of Steven Truppe via llvm-dev <llvm-dev at lists.llvm.org> >> Sent: Sunday, June 9, 2019 05:42 >> To: LLVM Developers Mailing List >> Subject: [llvm-dev] Question about the mailing list. >> >> Hello everyone, >> >> i'm not able to find the llvm mailing list for user questions, can you >> help me finding it please ? >> >> also the clang mailing list can't be found (only llvm-dev and clang-dev). >> >> >> best regards! >> >> _______________________________________________ >> LLVM Developers mailing list >> llvm-dev at lists.llvm.org >> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >> _______________________________________________ >> LLVM Developers mailing list >> llvm-dev at lists.llvm.org >> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190609/68bf23ab/attachment.html>