summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | soname test: set an initial DT_SONAME entrydarealshinji2015-07-131-1/+10
| | | |
| * | | tests: build libsimple without sonamedarealshinji2015-07-131-1/+1
| | | |
| * | | Create new soname entry if shlib is missing one, merge modifySoname() and ↵darealshinji2015-07-131-58/+69
| |/ / | | | | | | | | | | | | getSoname() Basically this is just a modified copy of the rpath code
* | | Merge branch 'patch-1' of https://github.com/darealshinji/patchelfmodEelco Dolstra2015-07-232-38/+9
|\ \ \ | | | | | | | | | | | | | | | | Conflicts: configure.ac
| * | | Don't need libattr and libacl anymoredarealshinji2015-07-131-8/+0
| | | |
| * | | Don't create a temporary copy to not break hardlinks (fixes #32)darealshinji2015-07-131-30/+9
| |/ /
* | | Configure automatically the page size with a runtime call, solve the issue ↵Adrien Devresse2015-07-232-21/+29
| | | | | | | | | | | | #53 related to prtability on powerpc64 architecture
* | | Change configure.ac from OpenWrt to support Mac OSAlexandre Pretyman2015-07-171-1/+1
|/ / | | | | | | | | | | | | | | | | | | | | | | This change is from the OpenWrt project, from the URL: https://dev.openwrt.org/ticket/18998 It enables patchelf to sucessfully compile and run under Mac OS and keeps compatibility with Linux. Tested under Mac OS X 10.9.5 and Ubuntu 15.04 to patch a binary of type ELF 32-bit LSB executable - the patch fully worked This patch is credited to Felix Fietkau
* | Quick fix for #47Eelco Dolstra2015-07-101-1/+1
| |
* | Merge pull request #35 from darealshinji/patch-2Eelco Dolstra2015-06-231-217/+847
|\ \ | | | | | | Update elf.h
| * | comment out Glibc-specific linesdarealshinji2014-08-291-4/+4
| | |
| * | revert changesdarealshinji2014-08-281-33/+3
| | |
| * | Update configure.acdarealshinji2014-08-281-3/+33
| | |
| * | Update elf.hdarealshinji2014-08-281-217/+847
| |/
* | man page: add docs for two options from readmeVladimír Čunát2015-06-231-0/+8
| | | | | | | | Reported on ML by tjernlund@tjernlund.se.
* | Remove Hydra scheduling prioritiesEelco Dolstra2014-11-201-66/+66
| |
* | Add Fedora 20 and Ubuntu 14.10 buildsEelco Dolstra2014-11-201-0/+4
| |
* | Shut up some warningsEelco Dolstra2014-11-061-9/+5
| |
* | let's print compiler warningsdarealshinji2014-11-061-0/+2
| |
* | Merge pull request #42 from xiaosuo/masterEelco Dolstra2014-11-062-0/+54
|\ \ | | | | | | Add option --no-default-lib
| * | Add option --no-default-libChangli Gao2014-10-222-0/+54
|/ / | | | | | | | | Marks the object that the search for dependencies of this object will ignore any default library search paths.
* | Disable OpenSuSE 11.0 buildsEelco Dolstra2014-09-251-2/+2
| | | | | | | | http://hydra.nixos.org/build/14710240
* | Disable FreeBSD buildsEelco Dolstra2014-09-251-1/+1
|/
* Fix build on LinuxEelco Dolstra2014-08-181-0/+2
| | | | http://hydra.nixos.org/build/13337912
* StyleEelco Dolstra2014-07-291-3/+6
|
* Add dependency on acl/attr packagesEelco Dolstra2014-07-291-0/+1
|
* Use libattr and libacl to copy permissions if availableJeremy Sanders2014-07-292-0/+25
|
* no-rpath-prebuild.sh: Don't run resulting binaryEelco Dolstra2014-07-181-6/+3
| | | | | | | | | This leads to numerous build failures: http://hydra.nixos.org/eval/1136585 because ELF interpreter names are not unique (e.g. ld-linux.so.2 is used on systems other than i686-linux).
* Build on Ubuntu 14.04Eelco Dolstra2014-07-181-2/+4
|
* Update .gitignoreEelco Dolstra2014-04-241-0/+18
|
* Merge branch 'master' of github.com:vdanjean/patchelfEelco Dolstra2014-04-2419-8/+86
|\ | | | | | | | | Conflicts: tests/Makefile.am
| * rewrite no-rpath testVincent Danjean2012-07-1119-8/+85
| | | | | | | | | | | | * compile locally this test in the no-rpath test * add tests for prebuilt no-rpath binaries on various ELF platforms => ia64 does not work, probably a bug in patchelf. Marking it as XFAIL for now
| * Merge remote-tracking branch 'origin/master'Vincent Danjean2012-07-110-0/+0
| |\
| * | Rewrite tests in automakeVincent Danjean2012-06-212-38/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | - add options in AM_INIT_AUTOMAKE to be more strict and to enable more advanced features (color-tests and parallel-tests) - rewrite tests/Makefile.am to use automake rules for building program and libraries => we can now do: ./bootstrap.sh && mkdir build && cd build && ../configure && make -j distcheck
| * | Add a .gitignore for all file generated by ./bootstrap.shVincent Danjean2012-06-211-0/+7
| | | | | | | | | | | | | | | No need to exclude files created when compiling and testing as this can be done out of tree
| * | Cleanup configure.acVincent Danjean2012-06-211-2/+3
| | | | | | | | | | | | | | | | | | - quote argument (mostly cosmetic) - use a file present only once in the sources for AC_CONFIG_SRCDIR - use AC_CONFIG_AUX_DIR to put all auxilary scripts in a subdirectory
| * | Allow parallel execution of testsVincent Danjean2012-06-217-65/+72
| | | | | | | | | | | | Each test use its own subdirectory in scratch/
| * | Use autoreconf to bootstrap the projectVincent Danjean2012-06-211-4/+1
| | | | | | | | | | | | This avoid to manually list all autotool programs required
| * | fix build *and check* out of treeVincent Danjean2012-06-212-5/+5
| | | | | | | | | | | | | | | | | | | | | - use Makefile variables $< (and $@) so that sources are found correctly - use ${srcdir} in test scripts to find the sources This allows "make distcheck" to successfully pass
| * | Use automake support to install docsVincent Danjean2012-06-211-3/+1
| | | | | | | | | | | | It is shorter, cleaner and "make uninstall" support comes for free
* | | Merge branch 'document-remove-needed' of github.com:fsateler/patchelfEelco Dolstra2014-04-241-3/+3
|\ \ \ | | | | | | | | | | | | | | | | Conflicts: patchelf.1
| * | | Document --remove-needed in manpageFelipe Sateler2014-03-181-0/+4
| | | |
* | | | Merge branch 'manpage-typo' of github.com:fsateler/patchelfEelco Dolstra2014-04-241-1/+1
|\ \ \ \
| * | | | Fix typo in manpageFelipe Sateler2014-03-281-1/+1
| |/ / /
* | | | Merge branch 'master' of github.com:ext/patchelfEelco Dolstra2014-04-242-1/+5
|\ \ \ \
| * | | | Add --remove-needed to manpage.David Sveningsson2013-12-171-0/+4
| | | | |
| * | | | support -h in addition to --helpDavid Sveningsson2013-12-171-1/+1
| | | | |
* | | | | Merge branch 'master' of github.com:rgcjonas/patchelfEelco Dolstra2014-04-242-1/+121
|\ \ \ \ \
| * | | | | Add ability to add and replace DT_NEEDED entriesJonas Kuemmerlin2013-04-282-1/+121
| | | | | |
* | | | | | Merge branch 'cdugz-master'Eelco Dolstra2014-04-243-3/+132
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | |