python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to link dynamically only with some libraries with bazel?
There are certain libraries, like gflags that have global state. I'm in a situation where main executable and dynamically loaded plugin (.so) both use gflags. In both cases bazel will link gflags stat...
Roman Byshko
Votes: 0
Answers: 0
Short include paths in bazel C/C++ project
I'm new to using bazel and I don't know how to make the path of my includes not have to be a full path. You can see the comment in src/main/main.c file.
My directory tree:
.
├── WORKSPACE
├── src
│ ...
barroco
Votes: 0
Answers: 1
BAZEL: Query all targets in bazel rule
Here is code structure
| //base_folder
├── file0.txt
├── BUILD
├── folder1
| ├── BUILD
| ├── file1
├── folder2
| ├── BUILD
| ├── file2
I'd like to know all the files or target information t...
ReneSun
Votes: 0
Answers: 1
using variables in bazel WORKSPACE script
I'm using a bazel WORKSPACE file that is shared among several users. Each user needs to use his respective home directory path inside the WORKSPACE file.
android_ndk_repository(
name = "andro...
mcExchange
Votes: 0
Answers: 1