dyld-750.5.tar.gz
[apple/dyld.git] / testing / test-cases / rpath-absolute.dtest / main.c
1
2 // BOOT_ARGS: dyld_flags=2
3
4 // BUILD: $CC foo.c -dynamiclib -o $BUILD_DIR/librpathabs.dylib -install_name @rpath/librpathabs.dylib
5 // BUILD: $CC foo.c -dynamiclib $BUILD_DIR/librpathabs.dylib -o $BUILD_DIR/libfoo.dylib -install_name $RUN_DIR/libfoo.dylib -rpath $RUN_DIR
6 // BUILD: $CC main.c $BUILD_DIR/libfoo.dylib -o $BUILD_DIR/rpath-absolute.exe
7
8 // RUN: DYLD_AMFI_FAKE=0 ./rpath-absolute.exe
9
10 // main prog links with libfoo.dylib which uses an absolute LC_RPRATH and @rpath to find librpathabs.dylib
11 // must be able to run with full restrictions
12
13 #include <stdio.h>
14
15 #include "test_support.h"
16
17 extern int foo;
18
19
20 int main(int argc, const char* argv[], const char* envp[], const char* apple[]) {
21 PASS("Success");
22 }
23
24