Browse Source

Fix input variable missprint

svidyuk 1 year ago
parent
commit
c76aaf823d

+ 1 - 1
build/ymake.core.conf

@@ -4762,7 +4762,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}
+    .SEM=add_custom_command OUTPUT ${output;noauto:Output} DEPENDS ${input:Input} COMMAND ${LLVMAS} ${input:Input} -o ${output;noauto:Output}
     PEERDIR(build/platform/clang)
 }
 

+ 6 - 0
certs/CMakeLists.darwin-x86_64.txt

@@ -6,6 +6,12 @@
 # original buildsystem will not be accepted.
 
 
+get_built_tool_path(
+  TOOL_rescompiler_bin
+  TOOL_rescompiler_dependency
+  tools/rescompiler/bin
+  rescompiler
+)
 
 add_library(certs INTERFACE)
 target_link_libraries(certs INTERFACE

+ 6 - 0
certs/CMakeLists.linux-aarch64.txt

@@ -6,6 +6,12 @@
 # original buildsystem will not be accepted.
 
 
+get_built_tool_path(
+  TOOL_rescompiler_bin
+  TOOL_rescompiler_dependency
+  tools/rescompiler/bin
+  rescompiler
+)
 
 add_library(certs INTERFACE)
 target_link_libraries(certs INTERFACE

+ 6 - 0
certs/CMakeLists.linux-x86_64.txt

@@ -6,6 +6,12 @@
 # original buildsystem will not be accepted.
 
 
+get_built_tool_path(
+  TOOL_rescompiler_bin
+  TOOL_rescompiler_dependency
+  tools/rescompiler/bin
+  rescompiler
+)
 
 add_library(certs INTERFACE)
 target_link_libraries(certs INTERFACE

+ 6 - 0
certs/CMakeLists.windows-x86_64.txt

@@ -6,6 +6,12 @@
 # original buildsystem will not be accepted.
 
 
+get_built_tool_path(
+  TOOL_rescompiler_bin
+  TOOL_rescompiler_dependency
+  tools/rescompiler/bin
+  rescompiler
+)
 
 add_library(certs INTERFACE)
 target_link_libraries(certs INTERFACE

+ 1 - 0
contrib/CMakeLists.txt

@@ -8,3 +8,4 @@
 
 add_subdirectory(libs)
 add_subdirectory(restricted)
+add_subdirectory(tools)

+ 1 - 0
contrib/libs/CMakeLists.linux-aarch64.txt

@@ -49,6 +49,7 @@ add_subdirectory(openldap)
 add_subdirectory(opentelemetry-proto)
 add_subdirectory(pcre)
 add_subdirectory(pdqsort)
+add_subdirectory(pfr)
 add_subdirectory(poco)
 add_subdirectory(protobuf)
 add_subdirectory(protoc)

+ 1 - 0
contrib/libs/CMakeLists.linux-x86_64.txt

@@ -50,6 +50,7 @@ add_subdirectory(openldap)
 add_subdirectory(opentelemetry-proto)
 add_subdirectory(pcre)
 add_subdirectory(pdqsort)
+add_subdirectory(pfr)
 add_subdirectory(poco)
 add_subdirectory(protobuf)
 add_subdirectory(protoc)

+ 36 - 0
contrib/libs/apache/arrow/CMakeLists.darwin-x86_64.txt

@@ -7,6 +7,42 @@
 
 
 find_package(ZLIB REQUIRED)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
 
 add_library(libs-apache-arrow)
 target_compile_options(libs-apache-arrow PUBLIC

+ 36 - 0
contrib/libs/apache/arrow/CMakeLists.linux-aarch64.txt

@@ -7,6 +7,42 @@
 
 
 find_package(ZLIB REQUIRED)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
+get_built_tool_path(
+  TOOL_flatc_bin
+  TOOL_flatc_dependency
+  contrib/tools/flatc/bin
+  flatc
+)
 
 add_library(libs-apache-arrow)
 target_compile_options(libs-apache-arrow PUBLIC

Some files were not shown because too many files changed in this diff