Replies: 1 comment
-
My fault....there was a problem with my configuration and it seems that Meson support the generated list as input for objects of static_library |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently I'm using Meson to build some example projects for my lectures. This includes low-level assembly with GNU Assembler and GNU ld with linker files for different outputs (e.g. Raw Binary and ELF).
So far I've used a generator to create object files from my assembly sources (there are multiple files with different assembly options). This works pretty good and I'm using a custom target to call the linker with the desired flags and options. But now I would like to bundle some object files generated by my "assembler generator" into a static library. Unfortunately, the static_library() doesn't support a generated list as objects parameter.
Now my question is: What would be a good way to realize the assembly and static_library combination?
This does not work:
My Generator:
Beta Was this translation helpful? Give feedback.
All reactions