2015-01-31 02:27:36 +01:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package cc
|
|
|
|
|
|
|
|
import (
|
2015-03-18 20:28:32 +01:00
|
|
|
"fmt"
|
|
|
|
|
2015-01-31 02:27:36 +01:00
|
|
|
"android/soong/common"
|
|
|
|
)
|
|
|
|
|
2015-03-24 01:50:24 +01:00
|
|
|
type toolchainFactory func(archVariant string, cpuVariant string) Toolchain
|
2015-01-31 02:27:36 +01:00
|
|
|
|
|
|
|
var toolchainFactories = map[common.HostOrDevice]map[common.ArchType]toolchainFactory{
|
|
|
|
common.Host: make(map[common.ArchType]toolchainFactory),
|
|
|
|
common.Device: make(map[common.ArchType]toolchainFactory),
|
|
|
|
}
|
|
|
|
|
|
|
|
func registerToolchainFactory(hod common.HostOrDevice, arch common.ArchType,
|
|
|
|
factory toolchainFactory) {
|
|
|
|
|
|
|
|
toolchainFactories[hod][arch] = factory
|
|
|
|
}
|
|
|
|
|
2015-03-24 01:50:24 +01:00
|
|
|
type Toolchain interface {
|
2015-03-19 07:38:50 +01:00
|
|
|
Name() string
|
|
|
|
|
2015-01-31 02:27:36 +01:00
|
|
|
GccRoot() string
|
|
|
|
GccTriple() string
|
2015-03-19 07:38:50 +01:00
|
|
|
GccVersion() string
|
2015-01-31 02:27:36 +01:00
|
|
|
Cflags() string
|
|
|
|
Cppflags() string
|
|
|
|
Ldflags() string
|
|
|
|
IncludeFlags() string
|
2015-03-18 20:28:32 +01:00
|
|
|
InstructionSetFlags(string) (string, error)
|
2015-01-31 02:27:36 +01:00
|
|
|
|
|
|
|
ClangTriple() string
|
|
|
|
ClangCflags() string
|
|
|
|
ClangCppflags() string
|
|
|
|
ClangLdflags() string
|
|
|
|
|
|
|
|
Is64Bit() bool
|
|
|
|
}
|
|
|
|
|
2015-03-18 20:28:32 +01:00
|
|
|
type toolchainBase struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (toolchainBase) InstructionSetFlags(s string) (string, error) {
|
|
|
|
if s != "" {
|
|
|
|
return "", fmt.Errorf("instruction_set: %s is not a supported instruction set", s)
|
|
|
|
}
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
2015-01-31 02:27:36 +01:00
|
|
|
type toolchain64Bit struct {
|
2015-03-18 20:28:32 +01:00
|
|
|
toolchainBase
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (toolchain64Bit) Is64Bit() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
type toolchain32Bit struct {
|
2015-03-18 20:28:32 +01:00
|
|
|
toolchainBase
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (toolchain32Bit) Is64Bit() bool {
|
|
|
|
return false
|
|
|
|
}
|