Bug 1852202: LLVM on OpenBSD doesn't support -fstack-clash-protection r=firefox-build-system-reviewers,andi DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D188228
This commit is contained in:
Landry Breuil 2023-09-19 09:25:55 +00:00
Родитель 5b278d5897
Коммит 74c25ed2b2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2412,7 +2412,7 @@ def security_hardening_cflags(
if (
c_compiler.type == "clang"
and c_compiler.version >= "11.0.1"
and target.os not in ("WINNT", "OSX")
and target.os not in ("WINNT", "OSX", "OpenBSD")
and target.cpu in ("x86", "x86_64", "ppc64", "s390x")
):
flags.append("-fstack-clash-protection")