blob: 46bdbec6f1db48271e7465ff8b732f3c0804c1c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* @file rpath.h
*/
#ifndef SPM_RPATH_H
#define SPM_RPATH_H
Process *patchelf(const char *_filename, const char *_args);
FSTree *rpath_libraries_available(const char *root);
char *rpath_autodetect(const char *filename, FSTree *tree);
int has_rpath(const char *_filename);
char *rpath_get(const char *_filename);
char *rpath_generate(const char *_filename, FSTree *tree);
int rpath_autoset(const char *filename, FSTree *tree);
int rpath_set(const char *filename, const char *rpath);
#endif //SPM_RPATH_H
|