blob: b77ef8f4b5ebae3730177a723b08d0d9cbfde4b9 [file] [log] [blame] [edit]
# Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
# SPDX-License-Identifier: MIT
choice TOOLCHAIN
bool "Toolchain selection"
default TOOLCHAIN_GCC
help
"Select toolchain"
config TOOLCHAIN_GCC
bool "GCC"
help
"Select GCC toolchain"
endchoice
if TOOLCHAIN_GCC
config LTO_OPTIMIZATION
bool "LTO flag"
help
"Select The link-time optimizations flag"
config STACK_PROTECTOR_STRONG
bool "stack protecter strong flag"
help
"Select stack protecter string flag"
endif