1// Copyright 2017 syzkaller project authors. All rights reserved.
2// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
3
4package main
5
6import (
7	"github.com/google/syzkaller/pkg/compiler"
8)
9
10type windows struct{}
11
12func (*windows) prepare(sourcedir string, build bool, arches []string) error {
13	return nil
14}
15
16func (*windows) prepareArch(arch *Arch) error {
17	return nil
18}
19
20func (*windows) processFile(arch *Arch, info *compiler.ConstInfo) (map[string]uint64, map[string]bool, error) {
21	return extract(info, "cl", nil, "", true)
22}
23