crosstool-ng/scripts/build/kernel/windows.sh
Alexey Neyman 5cf859d9d9 Add config flags for omitting 'arch' and 'vendor'
... parts of the config tuple. While here, remove parts that are
setting portions of the target tuple to a value that's already
the default.

Signed-off-by: Alexey Neyman <stilor@att.net>
2018-12-10 01:10:01 -08:00

26 lines
446 B
Bash

# This file declares functions to install the kernel headers for mingw64
# Copyright 2012 Yann Diorcet
# Licensed under the GPL v2. See COPYING in the root of this package
CT_DoKernelTupleValues()
{
# Even we compile for x86_64 target architecture, the target OS have to
# bet mingw32 (require by gcc and mingw-w64)
CT_TARGET_KERNEL="mingw32"
}
do_kernel_get()
{
:
}
do_kernel_extract()
{
:
}
do_kernel_headers()
{
:
}