Re: [cfe-users] Writing gcc-style dependency files with clang-cl

2018-03-12 Thread David Blaikie via cfe-users
+Reid for clang-cl info On Tue, Mar 6, 2018 at 6:49 AM Ted Mielczarek via cfe-users < cfe-users@lists.llvm.org> wrote: > Hi there, > > We're continuing to work on making Firefox build with clang-cl in more > configurations, and one of my colleagues recently wondered[1] if we could > generate Make

Re: [cfe-users] Syncing up clang and clang-tools-extra with llvm for git

2018-03-12 Thread David Blaikie via cfe-users
+Adrian for questions about dsymutil. Though I'm not quite sure how the subject line relates to the question? On Thu, Mar 8, 2018 at 7:03 PM Michael Eisel via cfe-users < cfe-users@lists.llvm.org> wrote: > Hi, > > I'm hitting some segfault when I run dsymutil without any flags, but when > I add

Re: [cfe-users] Syncing up clang and clang-tools-extra with llvm for git

2018-03-12 Thread Adrian Prantl via cfe-users
The --update option is meant to be used to rebuild the accelerator tables in an existing .dSYM. Can you share the crash log for when dsymutil fails? -- adrian > On Mar 12, 2018, at 8:16 AM, David Blaikie wrote: > > +Adrian for questions about dsymutil. > > Though I'm not quite sure how the su

Re: [cfe-users] Writing gcc-style dependency files with clang-cl

2018-03-12 Thread Reid Kleckner via cfe-users
-Xclang escapes through to the -cc1 command line, which you can see by adding -### to see what subcommands clang or clang-cl are running. It looks like -MD and -MF map to '-dependency-file foo.dep' at the -cc1 level, so 'clang-cl -Xclang -dependency-file -Xclang foo.dep' should write makefile depen