[patch v3 2/4] build/ruby: make use of -Wl,--no-undefined configurable
authorDavid Bremner <david@tethera.net>
Mon, 1 Jun 2015 07:09:00 +0000 (09:09 +0200)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:48:56 +0000 (14:48 -0700)
54/8e04950d1ca6f8717b071899a04f59fb3b551d [new file with mode: 0644]

diff --git a/54/8e04950d1ca6f8717b071899a04f59fb3b551d b/54/8e04950d1ca6f8717b071899a04f59fb3b551d
new file mode 100644 (file)
index 0000000..5d957eb
--- /dev/null
@@ -0,0 +1,122 @@
+Return-Path: <bremner@tesseract.cs.unb.ca>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 8AD986DE19A8\r
+ for <notmuch@notmuchmail.org>; Mon,  1 Jun 2015 00:10:51 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.264\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.264 tagged_above=-999 required=5 tests=[AWL=0.254, \r
+ T_HEADER_FROM_DIFFERENT_DOMAINS=0.01] autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id 1laJSDmfLMC4 for <notmuch@notmuchmail.org>;\r
+ Mon,  1 Jun 2015 00:10:50 -0700 (PDT)\r
+Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
+ [87.98.215.224])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id D13786DE1774\r
+ for <notmuch@notmuchmail.org>; Mon,  1 Jun 2015 00:10:49 -0700 (PDT)\r
+Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
+ 4.80) (envelope-from <bremner@tesseract.cs.unb.ca>)\r
+ id 1YzJrL-0007OH-MK; Mon, 01 Jun 2015 07:10:07 +0000\r
+Received: (nullmailer pid 2451 invoked by uid 1000); Mon, 01 Jun 2015\r
+ 07:09:06 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: David Bremner <david@tethera.net>, notmuch@notmuchmail.org\r
+Subject: [patch v3 2/4] build/ruby: make use of -Wl,--no-undefined\r
+ configurable\r
+Date: Mon,  1 Jun 2015 09:09:00 +0200\r
+Message-Id: <1433142542-2307-3-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.1.4\r
+In-Reply-To: <1433142542-2307-1-git-send-email-david@tethera.net>\r
+References: <1425679073-30439-5-git-send-email-david@tethera.net>\r
+ <1433142542-2307-1-git-send-email-david@tethera.net>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.18\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Mon, 01 Jun 2015 07:10:51 -0000\r
+\r
+In particular this is supposed to help build on systems (presumably\r
+using a non-gnu ld) where this flag is not available.\r
+---\r
+ bindings/Makefile.local  |  4 +++-\r
+ bindings/ruby/extconf.rb |  5 +++--\r
+ configure                | 13 +++++++++++++\r
+ 3 files changed, 19 insertions(+), 3 deletions(-)\r
+\r
+diff --git a/bindings/Makefile.local b/bindings/Makefile.local\r
+index e0b0bf0..2ad0b86 100644\r
+--- a/bindings/Makefile.local\r
++++ b/bindings/Makefile.local\r
+@@ -5,7 +5,9 @@ dir := bindings\r
+ # force the shared library to be built\r
+ ruby-bindings: lib/libnotmuch.so\r
+ ifeq ($(HAVE_RUBY_DEV),1)\r
+-      cd $(dir)/ruby && ruby extconf.rb --vendor\r
++      cd $(dir)/ruby && \\r
++              EXTRA_LDFLAGS="$(NO_UNDEFINED_LDFLAGS)" \\r
++              ruby extconf.rb --vendor\r
+       $(MAKE) -C $(dir)/ruby\r
+ else\r
+       @echo Missing dependency, skipping ruby bindings\r
+diff --git a/bindings/ruby/extconf.rb b/bindings/ruby/extconf.rb\r
+index 6160db2..6d5607e 100644\r
+--- a/bindings/ruby/extconf.rb\r
++++ b/bindings/ruby/extconf.rb\r
+@@ -10,8 +10,9 @@ dir = File.join('..', '..', 'lib')\r
+ # includes\r
+ $INCFLAGS = "-I#{dir} #{$INCFLAGS}"\r
\r
+-# make sure there are no undefined symbols\r
+-$LDFLAGS += ' -Wl,--no-undefined'\r
++if ENV['EXTRA_LDFLAGS']\r
++  $LDFLAGS += " " + ENV['EXTRA_LDFLAGS']\r
++end\r
\r
+ def have_local_library(lib, path, func, headers = nil)\r
+   checking_for checking_message(func, lib) do\r
+diff --git a/configure b/configure\r
+index 5a862b1..e3b4902 100755\r
+--- a/configure\r
++++ b/configure\r
+@@ -750,6 +750,16 @@ else\r
+     as_needed_ldflags=""\r
+ fi\r
\r
++printf "Checking for -Wl,--no-undefined... "\r
++if ${CC} -Wl,--no-undefined -o minimal minimal.c >/dev/null 2>&1\r
++then\r
++    printf "Yes.\n"\r
++    no_undefined_ldflags="-Wl,--no-undefined"\r
++else\r
++    printf "No (nothing to worry about).\n"\r
++    no_undefined_ldflags=""\r
++fi\r
++\r
+ WARN_CXXFLAGS=""\r
+ printf "Checking for available C++ compiler warning flags... "\r
+ for flag in -Wall -Wextra -Wwrite-strings; do\r
+@@ -954,6 +964,9 @@ RPATH_LDFLAGS = ${rpath_ldflags}\r
+ # Flags needed to have linker link only to necessary libraries\r
+ AS_NEEDED_LDFLAGS = ${as_needed_ldflags}\r
\r
++# Flags to have the linker flag undefined symbols in object files\r
++NO_UNDEFINED_LDFLAGS = ${no_undefined_ldflags}\r
++\r
+ # Whether valgrind header files are available\r
+ HAVE_VALGRIND = ${have_valgrind}\r
\r
+-- \r
+2.1.4\r
+\r