2021-06-22 02:28:25 +02: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 config
|
|
|
|
|
|
|
|
type toolchainBionic struct {
|
|
|
|
}
|
|
|
|
|
2021-06-22 02:31:50 +02:00
|
|
|
var (
|
|
|
|
bionicDefaultSharedLibraries = []string{"libc", "libm", "libdl"}
|
2021-06-22 02:34:47 +02:00
|
|
|
|
|
|
|
bionicCrtBeginStaticBinary, bionicCrtEndStaticBinary = []string{"crtbegin_static"}, []string{"crtend_android"}
|
|
|
|
bionicCrtBeginSharedBinary, bionicCrtEndSharedBinary = []string{"crtbegin_dynamic"}, []string{"crtend_android"}
|
|
|
|
bionicCrtBeginSharedLibrary, bionicCrtEndSharedLibrary = []string{"crtbegin_so"}, []string{"crtend_so"}
|
2021-06-22 02:31:50 +02:00
|
|
|
)
|
|
|
|
|
2021-06-22 02:28:25 +02:00
|
|
|
func (toolchainBionic) Bionic() bool { return true }
|
2021-06-22 02:31:50 +02:00
|
|
|
|
|
|
|
func (toolchainBionic) DefaultSharedLibraries() []string { return bionicDefaultSharedLibraries }
|
2021-06-22 02:34:47 +02:00
|
|
|
|
|
|
|
func (toolchainBionic) CrtBeginStaticBinary() []string { return bionicCrtBeginStaticBinary }
|
|
|
|
func (toolchainBionic) CrtBeginSharedBinary() []string { return bionicCrtBeginSharedBinary }
|
|
|
|
func (toolchainBionic) CrtBeginSharedLibrary() []string { return bionicCrtBeginSharedLibrary }
|
|
|
|
func (toolchainBionic) CrtEndStaticBinary() []string { return bionicCrtEndStaticBinary }
|
|
|
|
func (toolchainBionic) CrtEndSharedBinary() []string { return bionicCrtEndSharedBinary }
|
|
|
|
func (toolchainBionic) CrtEndSharedLibrary() []string { return bionicCrtEndSharedLibrary }
|