summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarvin Schlegel2020-02-16 22:36:26 +0100
committerMarvin Schlegel2020-02-16 22:36:26 +0100
commit485d72e9e6bb029546fec1b15f587796cffc0c06 (patch)
tree72f4a3d81fa565789682b542f0f648e942b35c4f
parent6748454758d85327069989d927485307edf9ad6d (diff)
downloadaur-485d72e9e6bb029546fec1b15f587796cffc0c06.tar.gz
disable link-time optimization
as it "tends to cause crashes and to make Emacs slower." src: https://git.savannah.gnu.org/cgit/emacs.git/tree/INSTALL?h=emacs-27
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD9
2 files changed, 6 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f21e070faba9..77d2b99889a8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = emacs27-git
pkgdesc = GNU Emacs. emacs-27 release branch.
pkgver = 27.0.60.140075
- pkgrel = 1
+ pkgrel = 2
url = http://www.gnu.org/software/emacs/
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index b955b3c91753..435a62c8a39e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,8 +2,9 @@
# Maintainer of emacs-git: Pedro A. López-Valencia <https://aur.archlinux.org/users/vorbote>
################################################################################
-# The only difference between this PKGBUILD and the one from `emacs-git` is that
-# this one builds emacs from `emacs-27` release branch.
+# The difference between this PKGBUILD and the one from `emacs-git` is that:
+# - this one builds emacs from `emacs-27` release branch.
+# - link-time optimization and use of clang are disabled by default.
#
# It hence should be more stable and less frequently updated than `emacs-git`.
#
@@ -33,7 +34,7 @@
################################################################################
CHECK= # Run tests. May fail, this is developement after all.
CLANG= # Use clang.
-LTO="YES" # Enable link-time optimization. Not that experimental anymore.
+LTO= # Enable link-time optimization. Not that experimental anymore.
# Seems fixed in GCC, so I've reenabled binutils support, please
# report any bug, to make it use clang by default again.
CLI= # CLI only binary.
@@ -70,7 +71,7 @@ NOGZ="YES" # Don't compress .el files.
################################################################################
pkgname="emacs27-git"
pkgver=27.0.60.140075
-pkgrel=1
+pkgrel=2
pkgdesc="GNU Emacs. emacs-27 release branch."
arch=('x86_64' )
url="http://www.gnu.org/software/emacs/"