mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
split --prebuilt and --host into --gcc-which and --qemu-which
Only one --host exists at ./build-modules, since that can select the host kernel, which is independent from the toolchain. Document that user mode simulation stopped working.
This commit is contained in:
4
build-m5
4
build-m5
@@ -8,8 +8,8 @@ from shell_helpers import LF
|
||||
class Main(common.BuildCliFunction):
|
||||
def _get_make_cmd(self):
|
||||
allowed_toolchains = ['buildroot']
|
||||
cc = self.get_toolchain_tool('gcc', allowed_toolchains=allowed_toolchains)
|
||||
ld = self.get_toolchain_tool('ld', allowed_toolchains=allowed_toolchains)
|
||||
cc = self.get_toolchain_tool('gcc')
|
||||
ld = self.get_toolchain_tool('ld')
|
||||
if self.env['arch'] == 'x86_64':
|
||||
arch = 'x86'
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user