Changeset 237416 in webkit


Ignore:
Timestamp:
Oct 25, 2018 9:33:33 AM (6 years ago)
Author:
Fujii Hironori
Message:

[CMake][Ninja][Win] midl.exe fails to create, open and write a temporary file in parallel build in Docker container
https://bugs.webkit.org/show_bug.cgi?id=187725

Reviewed by Michael Catanzaro.

  • PlatformWin.cmake: Added USES_TERMINAL to serialize midl.exe

executions.

Location:
trunk/Source/WebKitLegacy
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKitLegacy/ChangeLog

    r237330 r237416  
     12018-10-25  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [CMake][Ninja][Win] midl.exe fails to create, open and write a temporary file in parallel build in Docker container
     4        https://bugs.webkit.org/show_bug.cgi?id=187725
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * PlatformWin.cmake: Added USES_TERMINAL to serialize midl.exe
     9        executions.
     10
    1112018-10-22  Sihui Liu  <sihui_liu@apple.com>
    212
  • trunk/Source/WebKitLegacy/PlatformWin.cmake

    r228451 r237416  
    293293        DEPENDS ${_depends}
    294294        COMMAND midl.exe /I "${CMAKE_CURRENT_SOURCE_DIR}/win/Interfaces" /I "${CMAKE_CURRENT_SOURCE_DIR}/win/Interfaces/Accessible2" /I "${DERIVED_SOURCES_WEBKITLEGACY_DIR}/include" /I "${CMAKE_CURRENT_SOURCE_DIR}/win" /WX /char signed /env win32 /tlb "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${_filewe}.tlb" /out "${DERIVED_SOURCES_WEBKITLEGACY_DIR}/Interfaces" /h "${DERIVED_SOURCES_WEBKITLEGACY_DIR}/Interfaces/${_filewe}.h" /iid "${_filewe}_i.c" ${_defines} "${CMAKE_CURRENT_SOURCE_DIR}/${_infile}"
    295         VERBATIM)
     295        USES_TERMINAL VERBATIM)
    296296    set_source_files_properties(${DERIVED_SOURCES_WEBKITLEGACY_DIR}/Interfaces/${_filewe}.h PROPERTIES GENERATED TRUE)
    297297    set_source_files_properties(${DERIVED_SOURCES_WEBKITLEGACY_DIR}/Interfaces/${_filewe}_i.c PROPERTIES GENERATED TRUE)
Note: See TracChangeset for help on using the changeset viewer.