aboutsummaryrefslogtreecommitdiff
path: root/include/shlib.h
blob: 34894438050b5aecc49f0dedffddd8adbc9dcb3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SPM_SHLIB_H
#define SPM_SHLIB_H

#ifdef __APPLE__
#define SPM_SHLIB_EXEC "otool"
#define SPM_SHLIB_EXEC_ARGS "-l"
#else
#define SPM_SHLIB_EXEC "objdump"
#define SPM_SHLIB_EXEC_ARGS "-p"
#endif

StrList *shlib_deps(const char *_filename);

#endif //SPM_SHLIB_H