You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
897 B
28 lines
897 B
// Copyright 2019 The Chromium OS Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
func processThumbCodeFlags(builder *commandBuilder) {
|
|
arch := builder.target.arch
|
|
if builder.target.abi != "eabi" && (strings.HasPrefix(arch, "armv7") || strings.HasPrefix(arch, "armv8")) {
|
|
// ARM32 specfic:
|
|
// 1. Generate thumb codes by default. GCC is configured with
|
|
// --with-mode=thumb and defaults to thumb mode already. This
|
|
// changes the default behavior of clang and doesn't affect GCC.
|
|
// 2. Do not force frame pointers on ARM32 (https://crbug.com/693137).
|
|
builder.addPreUserArgs("-mthumb")
|
|
builder.transformArgs(func(arg builderArg) string {
|
|
if !arg.fromUser && arg.value == "-fno-omit-frame-pointer" {
|
|
return ""
|
|
}
|
|
return arg.value
|
|
})
|
|
}
|
|
}
|