branch: elpa/emacsql commit b1da2ba9d264cfa46a6ba809588a205b28e85bbf Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@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")))