From 34e6c5d4280d67729bbd8cdae333ca5e0bd580f5 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 23 Oct 2022 02:00:00 +0200 Subject: gnu: rapidjson: Fix powerpc64le-linux build. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …by avoiding ‘-march=native’, which is an unnecessary risk even if the result is not installed. * gnu/packages/web.scm (rapidjson)[arguments]: Replace the outdated 'patch-aarch-march-detection phase with an unconditional 'fix-march=native one. --- gnu/packages/web.scm | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'gnu/packages/web.scm') diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index abdd8cacdb..d30a2145df 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -1381,15 +1381,12 @@ (define-public rapidjson (delete-file-recursively "bin/jsonchecker"))))) (build-system cmake-build-system) (arguments - (if (string-prefix? "aarch64" (or (%current-target-system) - (%current-system))) - '(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'patch-aarch-march-detection - (lambda _ - (substitute* (find-files "." "^CMakeLists\\.txt$") - (("native") "armv8-a")))))) - '())) + '(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-march=native + (lambda _ + (substitute* "CMakeLists.txt" + (("-m[^-]*=native") ""))))))) (home-page "https://github.com/Tencent/rapidjson") (synopsis "JSON parser/generator for C++ with both SAX/DOM style API") (description -- cgit v1.2.3