emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/emacsql b1da2ba9d2 297/427: Change compiler flag order (wo


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql b1da2ba9d2 297/427: Change compiler flag order (work around old gcc bug).
Date: Tue, 13 Dec 2022 02:59:52 -0500 (EST)

branch: elpa/emacsql
commit b1da2ba9d264cfa46a6ba809588a205b28e85bbf
Author: Christopher Wellons <wellons@nullprogram.com>
Commit: Christopher Wellons <wellons@nullprogram.com>

    Change compiler flag order (work around old gcc bug).
---
 emacsql-sqlite.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/emacsql-sqlite.el b/emacsql-sqlite.el
index f61184be98..008b2a064f 100644
--- a/emacsql-sqlite.el
+++ b/emacsql-sqlite.el
@@ -124,7 +124,7 @@ If called with non-nil ASYNC the return value is 
meaningless."
          (ldlibs (if (eq system-type 'windows-nt) () (list "-ldl")))
          (options (emacsql-sqlite-compile-switches))
          (output (list "-o" emacsql-sqlite-executable))
-         (arguments (nconc ldlibs cflags options files output)))
+         (arguments (nconc cflags options files ldlibs output)))
     (cond ((not cc)
            (prog1 nil
              (message "Could not find C compiler, skipping SQLite build")))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]