mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-27 05:10:43 +00:00
sys/targets: fix tests when building on FreeBSD
gmake test is failing on FreeBSD since switching to clang. To address this: * use g++ as the C preprocessor for now. * use a C compiler for compiling C sources and add -lc++ when compiling executor.cc. Without this, clang warns about using a C++ compiler for compiling C code. * some test configs add -no-pie, which is not used by clang. Add -Wno-unused-command-line-argument to silence a warning
This commit is contained in:
parent
a885920d00
commit
e36b2ae53d
@ -195,8 +195,8 @@ var List = map[string]map[string]*Target{
|
||||
"amd64": {
|
||||
PtrSize: 8,
|
||||
PageSize: 4 << 10,
|
||||
CCompiler: "c++",
|
||||
CFlags: []string{"-m64", "-static"},
|
||||
CCompiler: "clang",
|
||||
CFlags: []string{"-m64"},
|
||||
NeedSyscallDefine: dontNeedSyscallDefine,
|
||||
},
|
||||
"386": {
|
||||
@ -204,8 +204,8 @@ var List = map[string]map[string]*Target{
|
||||
PtrSize: 4,
|
||||
PageSize: 4 << 10,
|
||||
Int64Alignment: 4,
|
||||
CCompiler: "c++",
|
||||
CFlags: []string{"-m32", "-static"},
|
||||
CCompiler: "clang",
|
||||
CFlags: []string{"-m32"},
|
||||
NeedSyscallDefine: dontNeedSyscallDefine,
|
||||
},
|
||||
},
|
||||
@ -344,6 +344,8 @@ var oses = map[string]osCommon{
|
||||
ExecutorUsesShmem: true,
|
||||
ExecutorUsesForkServer: true,
|
||||
KernelObject: "kernel.full",
|
||||
CPP: "g++",
|
||||
cflags: []string{"-static", "-lc++"},
|
||||
},
|
||||
"netbsd": {
|
||||
BuildOS: "linux",
|
||||
@ -425,6 +427,12 @@ func init() {
|
||||
if host := List[goos][runtime.GOARCH]; host != nil {
|
||||
target.CCompiler = host.CCompiler
|
||||
target.CPP = host.CPP
|
||||
if goos == "freebsd" {
|
||||
// For some configurations -no-pie is passed to the compiler,
|
||||
// which is not used by clang.
|
||||
// Ensure clang does not complain about it.
|
||||
target.CFlags = append(target.CFlags, "-Wno-unused-command-line-argument")
|
||||
}
|
||||
}
|
||||
}
|
||||
target.BuildOS = goos
|
||||
|
Loading…
Reference in New Issue
Block a user