Help for this page

Select Code to Download


  1. or download this
    perl -MFFI::CheckLib -E 'say "OK" if find_lib_or_exit lib => "archive"
    +'
    OK
    
  2. or download this
    # Tried MANY variations on this theme with lib_path and recurse too.
    perl -MFFI::CheckLib -E 'find_lib_or_exit lib => "dcmdata"'
    library not found: dcmdata at -e line 1.
    
  3. or download this
    find /usr/local/lib | ack dcmdata
    /usr/local/lib/libdcmdata.a
    
  4. or download this
    # Change in FFI::CheckLib.
      push @$pattern, qr{^lib(.*?)(?:\.([0-9]+(?:\.[0-9]+)*))?\.(?:dylib|b
    +undle|a)$}; # add "a"
    
  5. or download this
    perl -MFFI::CheckLib -E 'say "OK" if find_lib_or_exit lib => "dcmdata"
    +'
    OK