1# Copyright (c) 2021 Antony Pavlov <antonynpavlov@gmail.com> 2# Copyright (c) 2021 Remy Luisant <remy@luisant.ca> 3# 4# SPDX-License-Identifier: Apache-2.0 5 6if(CONFIG_BIG_ENDIAN) 7 list(APPEND TOOLCHAIN_C_FLAGS -EB) 8 list(APPEND TOOLCHAIN_LD_FLAGS -EB) 9else() 10 list(APPEND TOOLCHAIN_C_FLAGS -EL) 11 list(APPEND TOOLCHAIN_LD_FLAGS -EL) 12endif() 13 14list(APPEND TOOLCHAIN_C_FLAGS -msoft-float) 15list(APPEND TOOLCHAIN_LD_FLAGS -msoft-float) 16 17list(APPEND TOOLCHAIN_C_FLAGS -G0 -mno-gpopt -fno-pic) 18 19list(APPEND TOOLCHAIN_C_FLAGS -pipe) 20