Steven Truppe via llvm-dev
2019-Jun-09 10:42 UTC
[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!
Neil Nelson via llvm-dev
2019-Jun-09 16:00 UTC
[llvm-dev] Question about the mailing list.
Steven, Just getting here myself, there is a ton of documentation, after that, ask away. On 6/9/19 4:42 AM, Steven Truppe via llvm-dev wrote:> 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
Doerfert, Johannes via llvm-dev
2019-Jun-09 19:58 UTC
[llvm-dev] Question about the mailing list.
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
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>