Return-Path: X-Original-To: apmail-incubator-mesos-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-mesos-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D6B697757 for ; Fri, 9 Dec 2011 21:26:26 +0000 (UTC) Received: (qmail 65287 invoked by uid 500); 9 Dec 2011 21:26:26 -0000 Delivered-To: apmail-incubator-mesos-dev-archive@incubator.apache.org Received: (qmail 65260 invoked by uid 500); 9 Dec 2011 21:26:26 -0000 Mailing-List: contact mesos-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mesos-dev@incubator.apache.org Delivered-To: mailing list mesos-dev@incubator.apache.org Received: (qmail 65252 invoked by uid 99); 9 Dec 2011 21:26:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Dec 2011 21:26:26 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of charles@eecs.berkeley.edu designates 169.229.60.87 as permitted sender) Received: from [169.229.60.87] (HELO gateway0.EECS.Berkeley.EDU) (169.229.60.87) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Dec 2011 21:26:20 +0000 Received: from dhcp-44-112.eecs.berkeley.edu (dhcp-44-112.EECS.Berkeley.EDU [128.32.44.112]) (authenticated bits=0) by gateway0.EECS.Berkeley.EDU (8.14.5/8.13.5) with ESMTP id pB9LPq7D018872 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 9 Dec 2011 13:25:55 -0800 (PST) Message-ID: <4EE27CE0.4060202@eecs.berkeley.edu> Date: Fri, 09 Dec 2011 13:25:52 -0800 From: Charles Reiss User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:11.0a1) Gecko/20111129 Thunderbird/11.0a1 MIME-Version: 1.0 To: mesos-dev@incubator.apache.org CC: Arpan Ghosh Subject: Re: jni error while making mesos master branch References: In-Reply-To: X-Enigmail-Version: 1.4a1pre Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 12/9/11 12:54 PM, Arpan Ghosh wrote: > Hi all, > > We are trying to get mesos working with spark. > We configured mesos master branch with no options and while trying to make > it, we get the following error. Configuring with no options is known not to work currently. (This should be fixed when MESOS-58 is.) We suggest using or modifying one of the configure.template scripts instead. It looks like src/Makefile.in can't actually build without Java (at least because 'all' unconditionally depends on 'java', which unconditionally depends upon $(MESOS_JAVA_LIB_OBJ), which aren't likely to build without some JNI headers), which is a bug. (The patch for MESOS-58 should fix this bug, but it also does a whole bunch of other things.) - Charles