We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a33623 commit b4292fcCopy full SHA for b4292fc
classes/swift-common.bbclass
@@ -3,3 +3,11 @@ TOOLCHAIN = "gcc"
3
4
# appears to cause segfault
5
TARGET_CC_ARCH:remove:aarch64 = "-mbranch-protection=standard"
6
+
7
+# workaround for building on x86_64: SSE appears to cause cyclic header
8
+# dependency when building C++ std module. This needs investigation and an
9
+# upstream fix
10
+TARGET_CC_ARCH:remove:x86-64 = "-march=core2"
11
+TARGET_CC_ARCH:remove:x86-64 = "-mtune=core2"
12
+TARGET_CC_ARCH:remove:x86-64 = "-msse3"
13
+TARGET_CC_ARCH:remove:x86-64 = "-mfpmath=sse"
0 commit comments