Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ELF][test] Change references of %T to %t.dir | Fangrui Song | 2019-10-30 | 1 | -6/+6 |
| | | | | | | | | | | | | Test files in the same directory share the same %T. %T is easy to misuse and cause race conditions (when running concurrently) so it has been deprecated since D48842 (see docs/CommandGuide/lit.rst). While here, add `rm -rf %t.dir` so that tests cannot depend on old files lying around. Reviewed By: jhenderson, ruiu Differential Revision: https://reviews.llvm.org/D69572 | ||||
* | [ELF] Fix linker-script-in-search-path.s | Fangrui Song | 2018-07-25 | 1 | -3/+3 |
| | | | | llvm-svn: 337983 | ||||
* | [ELF] Make linker-script-in-search-path.s robust per r337972 | Fangrui Song | 2018-07-25 | 1 | -2/+2 |
| | | | | llvm-svn: 337975 | ||||
* | [ELF] Fall back to search dirs for linker scripts specified with -T | Alexander Richardson | 2017-11-20 | 1 | -0/+19 |
Summary: This matches the behaviour of ld.bfd: https://sourceware.org/binutils/docs/ld/Options.html#Options If scriptfile does not exist in the current directory, ld looks for it in the directories specified by any preceding '-L' options. Multiple '-T' options accumulate. Reviewers: ruiu, grimar Reviewed By: ruiu, grimar Subscribers: emaste, llvm-commits Differential Revision: https://reviews.llvm.org/D40129 llvm-svn: 318655 |