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

            Bug ID: 33493
           Summary: newest version of rc.exe (resource compiler) doesn't
                    supports /nologo
           Product: Build scripts
           Version: trunk
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: cmake
          Assignee: unassignedb...@nondot.org
          Reporter: junryoun...@gmail.com
                CC: llvm-bugs@lists.llvm.org

Windows 10, Version 10.0.15063
using Windows SDK 10, new version of rc.exe(resource compiler) with Visual
Studio 15 2017.

I gets rc1106: invalid option: -ologo

we can fix it just fixing cmake/modules/AddLLVM.cmake 

  set_property(SOURCE ${resource_file}
               PROPERTY COMPILE_FLAGS /nologo) 

option to
  set_property(SOURCE ${resource_file}
               PROPERTY COMPILE_FLAGS)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to