├── COPYING ├── Makefile ├── Makefile.am ├── Makefile.in ├── README ├── aarch64-linux-android-patchelf ├── aclocal.m4 ├── arm-linux-androideabi-patchelf ├── config.log ├── config.status ├── configure ├── configure.ac ├── gen_config.sh ├── patchelf.1 ├── patchelf.spec ├── patchelf.spec.in ├── src ├── .deps │ └── patchelf.Po ├── Makefile ├── Makefile.am ├── Makefile.in ├── elf.h └── patchelf.cc ├── tests ├── .deps │ ├── bar.Po │ ├── big-dynstr.Po │ ├── foo.Po │ ├── main.Po │ ├── no_rpath-no-rpath.Po │ ├── simple-simple.Po │ └── simple.Po ├── Makefile ├── Makefile.am ├── Makefile.in ├── bar.c ├── big-dynstr.sh ├── foo.c ├── main.c ├── no-rpath-prebuild.sh ├── no-rpath-prebuild │ ├── no-rpath-amd64 │ ├── no-rpath-armel │ ├── no-rpath-armhf │ ├── no-rpath-hurd-i386 │ ├── no-rpath-i386 │ ├── no-rpath-ia64 │ ├── no-rpath-kfreebsd-amd64 │ ├── no-rpath-kfreebsd-i386 │ ├── no-rpath-mips │ ├── no-rpath-mipsel │ ├── no-rpath-powerpc │ ├── no-rpath-s390 │ ├── no-rpath-sh4 │ └── no-rpath-sparc ├── no-rpath.c ├── no-rpath.sh ├── plain-fail.sh ├── plain-run.sh ├── set-interpreter-long.sh ├── set-interpreter-short.sh ├── set-rpath-library.sh ├── set-rpath.sh ├── shrink-rpath.sh ├── simple.c └── soname.sh └── version /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/README -------------------------------------------------------------------------------- /aarch64-linux-android-patchelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/aarch64-linux-android-patchelf -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /arm-linux-androideabi-patchelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/arm-linux-androideabi-patchelf -------------------------------------------------------------------------------- /config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/config.log -------------------------------------------------------------------------------- /config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/config.status -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/configure.ac -------------------------------------------------------------------------------- /gen_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/gen_config.sh -------------------------------------------------------------------------------- /patchelf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/patchelf.1 -------------------------------------------------------------------------------- /patchelf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/patchelf.spec -------------------------------------------------------------------------------- /patchelf.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/patchelf.spec.in -------------------------------------------------------------------------------- /src/.deps/patchelf.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/src/.deps/patchelf.Po -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/src/elf.h -------------------------------------------------------------------------------- /src/patchelf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/src/patchelf.cc -------------------------------------------------------------------------------- /tests/.deps/bar.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/.deps/big-dynstr.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/.deps/foo.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/.deps/main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/.deps/no_rpath-no-rpath.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/.deps/simple-simple.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/.deps/simple.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/Makefile.in -------------------------------------------------------------------------------- /tests/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/bar.c -------------------------------------------------------------------------------- /tests/big-dynstr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/big-dynstr.sh -------------------------------------------------------------------------------- /tests/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/foo.c -------------------------------------------------------------------------------- /tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/main.c -------------------------------------------------------------------------------- /tests/no-rpath-prebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild.sh -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-amd64 -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-armel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-armel -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-armhf -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-hurd-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-hurd-i386 -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-i386 -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-ia64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-ia64 -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-kfreebsd-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-kfreebsd-amd64 -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-kfreebsd-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-kfreebsd-i386 -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-mips -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-mipsel -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-powerpc -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-s390: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-s390 -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-sh4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-sh4 -------------------------------------------------------------------------------- /tests/no-rpath-prebuild/no-rpath-sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath-prebuild/no-rpath-sparc -------------------------------------------------------------------------------- /tests/no-rpath.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | printf("Hello world\n"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tests/no-rpath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/no-rpath.sh -------------------------------------------------------------------------------- /tests/plain-fail.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | if ./main; then 3 | exit 1 4 | fi 5 | -------------------------------------------------------------------------------- /tests/plain-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/plain-run.sh -------------------------------------------------------------------------------- /tests/set-interpreter-long.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/set-interpreter-long.sh -------------------------------------------------------------------------------- /tests/set-interpreter-short.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/set-interpreter-short.sh -------------------------------------------------------------------------------- /tests/set-rpath-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/set-rpath-library.sh -------------------------------------------------------------------------------- /tests/set-rpath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/set-rpath.sh -------------------------------------------------------------------------------- /tests/shrink-rpath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/shrink-rpath.sh -------------------------------------------------------------------------------- /tests/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/simple.c -------------------------------------------------------------------------------- /tests/soname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-android/patchelf/HEAD/tests/soname.sh -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 0.9 2 | --------------------------------------------------------------------------------