Я пытаюсь использовать некоторые функции cos / sin и dlopen / sym внутри моей программы на c, и они есть в моем файле "BUILD":
cc_binary(
name = "hello-dl",
srcs = ["hello-dl.cc"],
deps = ["dl"],
)
Мой исходный файл:
#include<stdio.h>
#include <stdlib.h>
#include <dlfcn.h>
int main(){
void * handle = dlopen("hello-greet", RTLD_LAZY);
if (!handle) {
fprintf(stderr, "%s\n", dlerror());
exit(EXIT_FAILURE);
}
void (*f)() = (void (*)()) dlsym(handle, "f");
char* error = dlerror();
if (error != NULL) {
fprintf(stderr, "%s\n", error);
exit(EXIT_FAILURE);
}
f();
dlclose(handle);
exit(EXIT_SUCCESS);
return 0;
}
и моя библиотека:
# cat hello-greet.cc
#include<stdio.h>
void f(){
printf("f function\n");
}
Когда я запускаю bazel, выдает ошибку:
bazel build hello-dl
INFO: Invocation ID: 89be69f9-5b70-4318-8b6a-43ad6feb341c
ERROR: /root/mynet/mytest/build/useBazel/cpp-project/BUILD:9:12: in deps attribute of cc_binary rule //:hello-dl: target '//:dl' does not exist
ERROR: Analysis of target '//:hello-dl' failed; build aborted: Analysis of target '//:hello-dl' failed; build aborted
INFO: Elapsed time: 0.115s
INFO: 0 processes.
FAILED: Build did NOT complete successfully (0 packages loaded, 0 targets configured)
Так как я могу это исправить?Большое спасибо.