[PATCH] D33199: [compiler-rt][cmake] Exclude emutls.c when COMPILER_RT_BAREMETAL_BUILD is set

Catherine Moore via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 25 07:46:13 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL303865: [cmake] Disable building emutls.c for baremetal targets. (authored by clm).

Changed prior to commit:
  https://reviews.llvm.org/D33199?vs=99001&id=100246#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D33199

Files:
  compiler-rt/trunk/lib/builtins/CMakeLists.txt


Index: compiler-rt/trunk/lib/builtins/CMakeLists.txt
===================================================================
--- compiler-rt/trunk/lib/builtins/CMakeLists.txt
+++ compiler-rt/trunk/lib/builtins/CMakeLists.txt
@@ -163,8 +163,7 @@
   udivti3.c
   umoddi3.c
   umodsi3.c
-  umodti3.c
-  emutls.c)
+  umodti3.c)
 
 set(GENERIC_TF_SOURCES
   comparetf2.c
@@ -193,6 +192,7 @@
 if(NOT COMPILER_RT_BAREMETAL_BUILD)
   set(GENERIC_SOURCES
     ${GENERIC_SOURCES}
+    emutls.c 
     enable_execute_stack.c)
 endif()
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D33199.100246.patch
Type: text/x-patch
Size: 521 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170525/806a7545/attachment.bin>


More information about the llvm-commits mailing list