GithubHelp home page GithubHelp logo

Comments (3)

zjturner avatar zjturner commented on April 28, 2024 1

You probably need to make a rule that can export a subpath, then you can use tge static_lib=“:foo” syntax

from buck2.

cjhopman avatar cjhopman commented on April 28, 2024

Yep, you need it to be the default output of a target or subtarget. What kind of rule is //:ext-link? If it's a genrule, that already has support for adding subtargets for paths in its output. If it's an http_file/archive, i'm not sure it has that support but it seems like it'd be a nice thing to add. That'd be something like:

http_archive(
  name = "ext-link",
  named_outs = { "liblef.a": "/opt/b28/s-5.8.003/linux_x86_64_rhel7/lib/liblef.a"}
  ...
)

prebuilt_cxx_libary(
   static_lib = '//:ext-link[liblef.a]',
   ...
 )

from buck2.

zjturner avatar zjturner commented on April 28, 2024

As a temporary workaround though (until http_archive supports it natively), you can also just write a rule that takes a target (such as an http_archive) as a dep, and re-export it.

def _inner_path_impl(ctx):
    original_default_output = ctx.attrs.target[DefaultInfo].default_outputs[0]

    return [
        DefaultInfo(default_outputs = [original_default_output.project(ctx.attrs.subpath)])
    ]

inner_path = rule(
    impl = _inner_path_impl,
    attrs = {
        "target": attrs.dep(providers = [DefaultInfo]),
        "subpath": attrs.string()
    }
)

Then you use it like this:

http_archive(
  name = "_ext-link",
  named_outs = { "liblef.a": "/opt/b28/s-5.8.003/linux_x86_64_rhel7/lib/liblef.a"}
  ...
)

inner_path(
    name = "ext-link",
    target = ":_ext-link",
    subpath = "opt/b28/s-5.8.003/linux_x86_64_rhel7/lib/liblef.a"
)

prebuilt_cxx_libary(
   static_lib = '//:ext-link',
   ...
 )

from buck2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.