-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4119 from casparvl/skip_rpath_check
add support for --filter-rpath-sanity-libs to skip RPATH sanity check for designated libraries
- Loading branch information
Showing
7 changed files
with
146 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
test/framework/easyconfigs/test_ecs/t/toy-app/toy-app-0.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
easyblock = 'EB_toy' | ||
|
||
name = 'toy-app' | ||
version = '0.0' | ||
|
||
homepage = 'https://easybuilders.github.io/easybuild' | ||
description = "Toy C program, 100% toy. This toy has a main function that depends on libtoy." | ||
|
||
toolchain = SYSTEM | ||
|
||
sources = [SOURCE_TAR_GZ] | ||
checksums = [ | ||
'9559393c0d747a4940a79be54e82fa8f14dbb0c32979a3e61e9db305f32dad49', # default (SHA256) | ||
] | ||
|
||
dependencies = [ | ||
('libtoy', '0.0') | ||
] | ||
|
||
buildopts = '-ltoy' | ||
|
||
sanity_check_paths = { | ||
'files': [('bin/toy-app')], | ||
'dirs': ['bin'], | ||
} | ||
|
||
postinstallcmds = ["echo TOY > %(installdir)s/README"] | ||
|
||
moduleclass = 'tools' | ||
# trailing comment, leave this here, it may trigger bugs with extract_comments() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters