mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 11:29:46 +00:00
bbad15ae75
* Introduce the new target flag 'LittleEndian' which specifies of which endianness the target is. * Introduce the new requires flag 'littleendian' for tests to selectively enable/disable tests on either little-endian architectures or big-endian ones. * Disable KD unit test on s390x architecture because the test works only on little-endian architecture. Signed-off-by: Alexander Egorenkov <Alexander.Egorenkov@ibm.com>
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
// Copyright 2018 syzkaller project authors. All rights reserved.
|
|
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/google/syzkaller/pkg/compiler"
|
|
)
|
|
|
|
type trusty struct{}
|
|
|
|
func (*trusty) prepare(sourcedir string, build bool, arches []*Arch) error {
|
|
if sourcedir == "" {
|
|
return fmt.Errorf("provide path to kernel checkout via -sourcedir flag (or make extract SOURCEDIR)")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (*trusty) prepareArch(arch *Arch) error {
|
|
return nil
|
|
}
|
|
|
|
func (*trusty) processFile(arch *Arch, info *compiler.ConstInfo) (map[string]uint64, map[string]bool, error) {
|
|
dir := arch.sourceDir
|
|
args := []string{
|
|
"-fmessage-length=0",
|
|
"-I", filepath.Join(dir, "external", "lk", "include", "shared"),
|
|
"-I", filepath.Join(dir, "trusty", "user", "base", "include"),
|
|
}
|
|
for _, incdir := range info.Incdirs {
|
|
args = append(args, "-I"+filepath.Join(dir, incdir))
|
|
}
|
|
if arch.includeDirs != "" {
|
|
for _, dir := range strings.Split(arch.includeDirs, ",") {
|
|
args = append(args, "-I"+dir)
|
|
}
|
|
}
|
|
params := &extractParams{
|
|
DeclarePrintf: true,
|
|
TargetEndian: arch.target.HostEndian,
|
|
}
|
|
return extract(info, "gcc", args, params)
|
|
}
|