blob: d74ef505d6ce14fbef6c9f6a3e18bd3dcd6afeed [file] [log] [blame]
// Copyright 2017 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 (
"github.com/google/syzkaller/pkg/compiler"
)
type windows struct{}
func (*windows) prepare(sourcedir string, build bool, arches []string) error {
return nil
}
func (*windows) prepareArch(arch *Arch) error {
return nil
}
func (*windows) processFile(arch *Arch, info *compiler.ConstInfo) (map[string]uint64, map[string]bool, error) {
return extract(info, "cl", nil, "", true, false)
}