Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (4f24abc863b1ab022bb8b29e4cc2c8a41c95712c)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (4f24abc863b1ab022bb8b29e4cc2c8a41c95712c)
  • Date: Tue, 1 Jan 2019 18:14:23 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

http/firefox/BUILD | 8 ++++----
http/firefox/DEPENDS | 2 +-
http/firefox/HISTORY | 3 +++
3 files changed, 8 insertions(+), 5 deletions(-)

New commits:
commit 4f24abc863b1ab022bb8b29e4cc2c8a41c95712c
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

http/firefox: migrated to clang based building after all + some cleanup

diff --git a/http/firefox/BUILD b/http/firefox/BUILD
index 9aacc57..5a89db5 100755
--- a/http/firefox/BUILD
+++ b/http/firefox/BUILD
@@ -22,11 +22,11 @@ CFLAGS="${CFLAGS//-O3/-O2}" &&
CXXFLAGS="${CXXFLAGS//-O3/-O2}" &&

# harden
-LDFLAGS="$LDFLAGS -Wl,-z,now"
+LDFLAGS="$LDFLAGS -Wl,-z,now" &&

# for gcc 6
-CFLAGS="$CXXFLAGS -fno-delete-null-pointer-checks -fno-schedule-insns2" &&
-CXXFLAGS="$CXXFLAGS -fno-delete-null-pointer-checks -fno-schedule-insns2" &&
+CFLAGS+=" -fno-delete-null-pointer-checks" &&
+CXXFLAGS+=" -fno-delete-null-pointer-checks" &&

#
# fix symbol check in build scripts, firefox adds -s to LDFLAGS so we can
@@ -54,4 +54,4 @@ for option in $OPTS; do
done &&

echo "mk_add_options MOZ_MAKE_FLAGS=\"-j${MAKE_NJOBS:-1}\"" >> .mozconfig &&
-CC=gcc CXX=g++ ./mach build
+./mach build
diff --git a/http/firefox/DEPENDS b/http/firefox/DEPENDS
index 5c28965..943ce85 100755
--- a/http/firefox/DEPENDS
+++ b/http/firefox/DEPENDS
@@ -1,7 +1,7 @@
. "${GRIMOIRE}/FUNCTIONS" &&

depends autoconf-2.13 &&
-depends -sub CXX gcc &&
+depends -sub "CLANG" llvm &&
depends perl &&
depends python &&

diff --git a/http/firefox/HISTORY b/http/firefox/HISTORY
index 87e1735..ef8e2f9 100644
--- a/http/firefox/HISTORY
+++ b/http/firefox/HISTORY
@@ -1,3 +1,6 @@
+2019-01-01 Pavel Vinogradov <public AT sourcemage.org>
+ * BUILD, DEPENDS: gcc -> llvm, some cleanup
+
2018-12-11 Pavel Vinogradov <public AT sourcemage.org>
* BUILD: forced gcc/g++ as compilers (llvm fails)
* DEPENDS: nodejs is now a hard dependencyneeds, nss >= 3.40



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (4f24abc863b1ab022bb8b29e4cc2c8a41c95712c), Pavel Vinogradov, 01/01/2019

Archive powered by MHonArc 2.6.24.

Top of Page