[PATCH] D77165: libclc: Use temporary files rather than a pipe
Jan Vesely via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 14 07:28:34 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG24fad7278a39: libclc: Use temporary files rather than a pipe (authored by daniels, committed by jvesely).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77165/new/
https://reviews.llvm.org/D77165
Files:
libclc/cmake/CMakeLLAsmInformation.cmake
Index: libclc/cmake/CMakeLLAsmInformation.cmake
===================================================================
--- libclc/cmake/CMakeLLAsmInformation.cmake
+++ libclc/cmake/CMakeLLAsmInformation.cmake
@@ -1,6 +1,7 @@
if(NOT CMAKE_LLAsm_COMPILE_OBJECT)
set(CMAKE_LLAsm_COMPILE_OBJECT
- "${CMAKE_LLAsm_PREPROCESSOR} -E -P <DEFINES> <INCLUDES> <FLAGS> -x cl <SOURCE> -o - | <CMAKE_LLAsm_COMPILER> -o <OBJECT> ")
+ "${CMAKE_LLAsm_PREPROCESSOR} -E -P <DEFINES> <INCLUDES> <FLAGS> -x cl <SOURCE> -o <OBJECT>.temp"
+ "<CMAKE_LLAsm_COMPILER> -o <OBJECT> <OBJECT>.temp")
endif()
if(NOT CMAKE_LLAsm_CREATE_STATIC_LIBRARY)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77165.257324.patch
Type: text/x-patch
Size: 634 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200414/97dac7ce/attachment.bin>
More information about the llvm-commits
mailing list