Ask Your Question
2

How can an executable be included in the PATH using Bazel?

asked 2023-07-18 00:53:02 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-07-18 01:10:01 +0000

nofretete gravatar image

To include an executable in the PATH using Bazel, you can use the data attribute in the cc_binary rule.

For example, if you have a binary called hello in the src directory, you can modify your cc_binary rule in your BUILD file like this:

cc_binary(
    name = "hello",
    srcs = ["src/hello.cpp"],
    data = [":hello"],
)

In this example, the data attribute specifies that the hello binary should be included in the target directory, i.e., the bin directory created by Bazel when building the target.

To include the binary in the PATH, you can create a shell script that adds the bin directory to the PATH and then calls the binary. For example:

#!/bin/bash

export PATH=$PATH:$(pwd)/bazel-bin

hello "$@"

Assuming this script is in your PATH, you can now run the hello binary from anywhere on your system.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-18 00:53:02 +0000

Seen: 13 times

Last updated: Jul 18 '23