kkaos
Results
2
comments of
kkaos
I have come across a similar issue. I want to accomplish the following in recipe.rb, especially so that the dl library gets linked when compiling is performed via gcc: export...
Ok, this does the trick: ``` environment :LIBS => "-Wl,--no-as-needed -ldl" def build environment.with_clean do sh './configure', "--prefix=#{prefix}", "--with-hdf5=/cm/shared/apps/hdf5_18/current", "--enable-64bit=true" make "--jobs=#{nproc}" end end ```