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

This commit is contained in:
Louis Dionne 2020-04-15 12:26:55 -04:00
parent 40515b19b0
commit 2bed2facdb
1 changed files with 0 additions and 2 deletions

View 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}'))