[LLVMbugs] [Bug 20107] New: r210920 breaks compilation of LLVM for Android.

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Mon Jun 23 08:55:17 PDT 2014


http://llvm.org/bugs/show_bug.cgi?id=20107

            Bug ID: 20107
           Summary: r210920 breaks compilation of LLVM for Android.
           Product: libraries
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: System Library
          Assignee: unassignedbugs at nondot.org
          Reporter: roliver at broadcom.com
                CC: llvmbugs at cs.uiuc.edu
    Classification: Unclassified

lib/Support/Unix/Path.inc:setLastModificationAndAccessTime()

For the '#else' case where HAVE_FUTIMENS and HAVE_FUTIMES are not defined:

    return make_error_code(errc::not_supported)

breaks the build as errc::not_supported is not defined.



This should instead be:

    return make_error_code(errc::function_not_supported)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20140623/03c68e27/attachment.html>


More information about the llvm-bugs mailing list