From: Tomi Ollila Date: Tue, 16 Jun 2015 18:20:30 +0000 (+0300) Subject: Re: [PATCH] lib, ruby: make use of -Wl,--no-undefined configurable X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e3a56eed6144f1e6bfc86ed96940f4854b676156;p=notmuch-archives.git Re: [PATCH] lib, ruby: make use of -Wl,--no-undefined configurable --- diff --git a/ff/b503b69df0537934403447fc6efaeba275ce80 b/ff/b503b69df0537934403447fc6efaeba275ce80 new file mode 100644 index 000000000..b37b1f6ba --- /dev/null +++ b/ff/b503b69df0537934403447fc6efaeba275ce80 @@ -0,0 +1,91 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by arlo.cworth.org (Postfix) with ESMTP id 4C20D6DE0243 + for ; Tue, 16 Jun 2015 11:21:00 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at cworth.org +X-Spam-Flag: NO +X-Spam-Score: 0.987 +X-Spam-Level: +X-Spam-Status: No, score=0.987 tagged_above=-999 required=5 tests=[AWL=0.335, + SPF_NEUTRAL=0.652] autolearn=disabled +Received: from arlo.cworth.org ([127.0.0.1]) + by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id aXEkjC5iI02L for ; + Tue, 16 Jun 2015 11:20:57 -0700 (PDT) +Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) + by arlo.cworth.org (Postfix) with ESMTP id 8CEDD6DE01F5 + for ; Tue, 16 Jun 2015 11:20:56 -0700 (PDT) +Received: from guru.guru-group.fi (localhost [IPv6:::1]) + by guru.guru-group.fi (Postfix) with ESMTP id 262AC100086; + Tue, 16 Jun 2015 21:20:31 +0300 (EEST) +From: Tomi Ollila +To: Jinwoo Lee , notmuch@notmuchmail.org +Subject: Re: [PATCH] lib, ruby: make use of -Wl,--no-undefined configurable +In-Reply-To: +References: <1433142542-2307-3-git-send-email-david@tethera.net> + <1434261524-14139-1-git-send-email-david@tethera.net> + + <87r3peye4q.fsf@maritornes.cs.unb.ca> + + <87oaki3zrh.fsf@maritornes.cs.unb.ca> + + + +User-Agent: Notmuch/0.20+12~gf3d9440 (http://notmuchmail.org) Emacs/24.3.1 + (x86_64-unknown-linux-gnu) +X-Face: HhBM'cA~ +MIME-Version: 1.0 +Content-Type: text/plain +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.18 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Tue, 16 Jun 2015 18:21:00 -0000 + +On Tue, Jun 16 2015, Jinwoo Lee wrote: + +>> That probably will not change; IIRC bash 3.2.57 is released under GPLv2 +>> and bash >= 4 GPLv3. You just need to install separate bash (brew, ports, +>> wherever) in order to run these tests in OS X. +> +> I installed bash from MacPorts and ran `make test' again, but the result +> is not so good. The error message is just "make: *** [test] Error 9", +> and I can't tell what exactly has failed. + +edit file test/T000-basic.sh and add line + +set -x + +after the initial comments, and just before line + +test_description='the test framework itself.' + +then rerun the test; I'd suggest script -c 'make test' +but that may not work on OS X -- anyway we're interested +the last lines so that is not necessary here. + +> +> Here's the log: +> +// stuff deleted +> +> T000-basic: Testing the test framework itself. +> make: *** [test] Error 9 + +At least we know it reached line 212 in test/test-lib.sh... + +Tomi