2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-01-31 04:48:25 +08:00
|
|
|
# See root CMakeLists.txt for description and expectations of this macro
|
|
|
|
|
|
|
|
macro(toolchain_cc_asm_base_flags dest_var_name)
|
|
|
|
# Specify assembly as the source language for the preprocessor to expect
|
|
|
|
set_ifndef(${dest_var_name} "-xassembler-with-cpp")
|
|
|
|
endmacro()
|