[libc++] NFC: Remove the %{compile} substitution, which is not used anymore
authorLouis Dionne <ldionne@apple.com>
Wed, 15 Apr 2020 16:26:55 +0000 (12:26 -0400)
committerLouis Dionne <ldionne@apple.com>
Wed, 15 Apr 2020 16:43:35 +0000 (12:43 -0400)
libcxx/utils/libcxx/test/config.py

index 30aaf1b..78989cc 100644 (file)
@@ -1008,8 +1008,6 @@ class Configuration(object):
         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}'))