diff options
-rw-r--r-- | gnu/packages/databases.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 2b4ec5e09a..3eaaf21a8c 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2659,7 +2659,11 @@ database and supports many programming languages. It is a NoSQL database.") (build-system gnu-build-system) (arguments `(#:configure-flags - (list "--enable-pthread" "--enable-off64" "--enable-fastest" + (list "--enable-pthread" "--enable-off64" + ,@(if (target-x86?) + ;; Enables x86 specific cflags. + '("--enable-fastest") + '()) (string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib")))) (inputs |