diff options
author | svidyuk <svidyuk@yandex-team.com> | 2023-08-30 12:12:06 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2023-08-30 12:42:20 +0300 |
commit | cb3da9494c53283f0230ad37e4e8d0ea61b7d8fc (patch) | |
tree | 98d10bf793b8e006a638ce08ed73a53b980b3828 /build | |
parent | d7212c5b8f972c2ad657311361a3bd1b136f2c5f (diff) | |
download | ydb-cb3da9494c53283f0230ad37e4e8d0ea61b7d8fc.tar.gz |
All .ll files support in LLVM_BC
Diffstat (limited to 'build')
-rw-r--r-- | build/ymake.core.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index cffa4006af..5193f19855 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -4761,6 +4761,7 @@ macro BPF_STATIC(Input, Output, Opts...) { ### Note: Output name is used as is, no extension added. macro LLVM_COMPILE_LL(Input, Output, Opts...) { .CMD=${CLANG_BC_ROOT}/bin/llvm-as ${input:Input} -o ${output;noauto:Output} ${kv;hide:"p BC"} ${kv;hide:"pc light-green"} + .SEM=add_custom_command OUTPUT ${output;noauto:Output} DEPENDS ${input:Inputs} COMMAND ${LLVMAS} ${input:Inputs} -o ${output;noauto:Output} PEERDIR(build/platform/clang) } |