mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
userland: make uber awesome with --baremetal-like executable resolution
This commit is contained in:
@@ -54,7 +54,7 @@ has the OpenBLAS libraries and headers installed.
|
||||
] +
|
||||
['HAS_{}=y'.format(package.upper()) for package in args.has_package] +
|
||||
shlex.split(args.make_args) +
|
||||
[os.path.join(build_dir, os.path.splitext(os.path.split(target)[1])[0]) + common.executable_ext for target in args.targets]
|
||||
[os.path.join(build_dir, os.path.splitext(os.path.split(target)[1])[0]) + common.userland_build_ext for target in args.targets]
|
||||
),
|
||||
cwd=common.userland_src_dir,
|
||||
extra_paths=[common.ccache_dir],
|
||||
@@ -62,7 +62,7 @@ has the OpenBLAS libraries and headers installed.
|
||||
common.copy_dir_if_update_non_recursive(
|
||||
srcdir=build_dir,
|
||||
destdir=common.out_rootfs_overlay_dir,
|
||||
filter_ext=common.executable_ext,
|
||||
filter_ext=common.userland_build_ext,
|
||||
)
|
||||
|
||||
def get_argparse_args(self):
|
||||
|
||||
Reference in New Issue
Block a user