https://bugs.llvm.org/show_bug.cgi?id=8312

Fangrui Song <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #6 from Fangrui Song <[email protected]> ---
> Were there any updates regarding this?

I think yes..

% gcc a.c -MF a.d -c -o a.o
cc1: error: to generate dependencies you must specify either -M or -MM
% clang a.c -MF a.d -c -o a.o
clang-9: warning: argument unused during compilation: '-MF a.d'
[-Wunused-command-line-argument]


% clang a.c -M -MF a.d -c -o a.o
# a.d generated
% gcc a.c -M -MF a.d -c -o a.o
# a.d generated

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to