Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorImran Hameed <imhameed@microsoft.com>2021-05-19 02:16:46 +0300
committerImran Hameed <imhameed@microsoft.com>2021-06-03 00:03:15 +0300
commita018ac7ba5454723e19682b9fbd3d32641a1efff (patch)
treed74de0f903482d3c2c72f2978f8a07ce5a9ad41b /llvm.proj
parentc7b01cedee57ff5d8ca9c6602c2d7891213cf8cf (diff)
Build host llvm-tblgen for Linux arm64/arm cross-builds
Avoid using the copy of llvm-tblgen-9 that comes with the build environment image. Should make future upgrades easier, because TableGen can gain more features and command line flags that the rest of the LLVM depends on.
Diffstat (limited to 'llvm.proj')
-rw-r--r--llvm.proj1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm.proj b/llvm.proj
index 36dcac48e41e..751b95085393 100644
--- a/llvm.proj
+++ b/llvm.proj
@@ -69,7 +69,6 @@
<ItemGroup Condition="'$(BuildOS)' != 'Windows_NT' and ('$(TargetArchitecture)' == 'arm' or '$(TargetArchitecture)' == 'arm64')">
<_LLVMBuildArgs Include='-DCMAKE_MODULE_LINKER_FLAGS="$(_CrossCFlags)"' />
<_LLVMBuildArgs Include='-DCMAKE_SHARED_LINKER_FLAGS="$(_CrossCFlags)"' />
- <_LLVMBuildArgs Condition="'$(BuildOS)' == 'Linux' and '$(LLVMTableGenPath)' == ''" Include='-DLLVM_TABLEGEN="/usr/bin/llvm-tblgen-9"' />
<_LLVMBuildArgs Condition="'$(BuildOS)' == 'Linux'" Include="-DCMAKE_C_COMPILER=clang-9" />
<_LLVMBuildArgs Condition="'$(BuildOS)' == 'Linux'" Include="-DCMAKE_CXX_COMPILER=clang++-9" />
</ItemGroup>