[libcxx-commits] [libcxx] 2bed2fa - [libc++] NFC: Remove the %{compile} substitution, which is not used anymore

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed Apr 15 09:44:12 PDT 2020


Author: Louis Dionne
Date: 2020-04-15T12:43:35-04:00
New Revision: 2bed2facdb03f89211d97b05706565aeb21f1247

URL: https://github.com/llvm/llvm-project/commit/2bed2facdb03f89211d97b05706565aeb21f1247
DIFF: https://github.com/llvm/llvm-project/commit/2bed2facdb03f89211d97b05706565aeb21f1247.diff

LOG: [libc++] NFC: Remove the %{compile} substitution, which is not used anymore

Added: 
    

Modified: 
    libcxx/utils/libcxx/test/config.py

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py
index 30aaf1b30095..78989cc3d7a3 100644
--- a/libcxx/utils/libcxx/test/config.py
+++ b/libcxx/utils/libcxx/test/config.py
@@ -1008,8 +1008,6 @@ def configure_substitutions(self):
         sub.append(('%{link_libcxxabi}', pipes.quote(self.cxx.link_libcxxabi_flag)))
         if self.cxx.isVerifySupported():
             sub.append(('%{verify}', ' '.join(self.cxx.verify_flags)))
-        # Add compile and build shortcuts
-        sub.append(('%{compile}', '%{cxx} -o %t.o %s -c %{flags} %{compile_flags}'))
         sub.append(('%{build}',   '%{cxx} -o %t.exe %s %{flags} %{compile_flags} %{link_flags}'))
         if self.cxx.use_modules:
             sub.append(('%{build_module}', '%{build}'))


        


More information about the libcxx-commits mailing list