summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-12-15 06:21:20 -0800
committerKhem Raj <raj.khem@gmail.com>2018-12-26 15:00:58 -0800
commit3b3e3054bf280fa633dd2d66a956e1abe5943e70 (patch)
tree9afe7e0dea4f23ccd6a0395995e59f2fd29da708
parent191bf60a6015fec46c101a4adbaf01b0fa2bcf7d (diff)
downloadmeta-clang-3b3e3054bf280fa633dd2d66a956e1abe5943e70.tar.gz
nonclangable: Disable integrated assembler for openssl and rpi userland on arm
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--conf/nonclangable.conf7
1 files changed, 7 insertions, 0 deletions
diff --git a/conf/nonclangable.conf b/conf/nonclangable.conf
index 7121a44..0261a45 100644
--- a/conf/nonclangable.conf
+++ b/conf/nonclangable.conf
@@ -130,6 +130,13 @@ CFLAGS_append_pn-libffi_toolchain-clang = " -no-integrated-as"
130# ^ 130# ^
131CFLAGS_append_pn-db_toolchain-clang = " -no-integrated-as" 131CFLAGS_append_pn-db_toolchain-clang = " -no-integrated-as"
132 132
133# Disable internal assembler for armv7 since it uses gnu assmebly syntax
134# which should be preprocessed via gcc/compiler
135#
136CFLAGS_append_pn-openssl_toolchain-clang_armv7ve = " -no-integrated-as"
137CFLAGS_append_pn-openssl_toolchain-clang_armv7a = " -no-integrated-as"
138CFLAGS_append_pn-userland_toolchain-clang = " -no-integrated-as"
139
133# regtest.cc:374:39: error: invalid suffix on literal; C++11 requires a 140# regtest.cc:374:39: error: invalid suffix on literal; C++11 requires a
134# space between literal and identifier [-Wreserved-user-defined-literal] 141# space between literal and identifier [-Wreserved-user-defined-literal]
135#| snprintf_func (buf, sizeof(buf), "%"Q"u", x); 142#| snprintf_func (buf, sizeof(buf), "%"Q"u", x);