Re: [slurm-users] How do I add a library for the linker in Makefile.in

2020-01-31 Thread Michael Gutteridge
With the caveat that I haven't built these plugins past Slurm 18, these are job submit plugins, and that the documentation is weak, you could look at these plugins I'd written for our cluster: https://github.com/FredHutch/gizmo-plugins Contains two plugins I build in the source tree. These set a

[slurm-users] How do I add a library for the linker in Makefile.in

2020-01-30 Thread Dean Schulze
I'm writing a plugin (based on the select/cons_res plugin). I need to add this library for the linker when my plugin is built: /usr/lib/x86_64-linux-gnu/libcurl.a Apparently I need to add this library to the Makefile.in. Where do I add this? Do I need to add this in the Makefile.am too? Thank