Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:56363 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 63172 invoked from network); 17 Nov 2011 09:42:02 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 17 Nov 2011 09:42:02 -0000 Authentication-Results: pb1.pair.com smtp.mail=hannes.magnusson@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=hannes.magnusson@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.220.170 as permitted sender) X-PHP-List-Original-Sender: hannes.magnusson@gmail.com X-Host-Fingerprint: 209.85.220.170 mail-vx0-f170.google.com Received: from [209.85.220.170] ([209.85.220.170:42062] helo=mail-vx0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id A1/01-55881-AE6D4CE4 for ; Thu, 17 Nov 2011 04:42:02 -0500 Received: by vcbfl10 with SMTP id fl10so1711075vcb.29 for ; Thu, 17 Nov 2011 01:41:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=axSWGfu214dFuagoEspqo5km22on0i1vwAjnwj9qVIM=; b=YpXBtk6W/0ZzboJipmYd18HZ8/8ZWQlLOGvjq67TvGYgARnlolFG4GZ0mSzCotnliU X0izHON0/c6y5XU2yptXr3XtL9yrvBr6OFvHnk4Sx+IlOA38l0WFvWRmvK1xdtLHBFUX /8HpQT0xxNpuaodQq64XvtVZl7WpAKINESLKM= MIME-Version: 1.0 Received: by 10.52.96.98 with SMTP id dr2mr54898920vdb.6.1321522919554; Thu, 17 Nov 2011 01:41:59 -0800 (PST) Received: by 10.52.157.105 with HTTP; Thu, 17 Nov 2011 01:41:59 -0800 (PST) In-Reply-To: <4EC4D619.3040400@hoa-project.net> References: <4EC4D619.3040400@hoa-project.net> Date: Thu, 17 Nov 2011 10:41:59 +0100 Message-ID: To: ivan.enderlin@hoa-project.net Cc: internals@lists.php.net Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] sapi/cli/php, compiling error From: hannes.magnusson@gmail.com (Hannes Magnusson) On Thu, Nov 17, 2011 at 10:38, Ivan Enderlin @ Hoa wrote: > Hi all, > > I was trying to compile PHP trunk on my machine and here is the error I g= ot: > > =C2=A0 Undefined symbols for architecture x86_64: > =C2=A0 =C2=A0 =C2=A0"_zim_SessionHandler_open", referenced from: > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0_php_session_class_functions in session= .o > =C2=A0 =C2=A0 =C2=A0"_zim_SessionHandler_close", referenced from: > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0_php_session_class_functions in session= .o > =C2=A0 =C2=A0 =C2=A0"_zim_SessionHandler_read", referenced from: > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0_php_session_class_functions in session= .o > =C2=A0 =C2=A0 =C2=A0"_zim_SessionHandler_write", referenced from: > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0_php_session_class_functions in session= .o > =C2=A0 =C2=A0 =C2=A0"_zim_SessionHandler_destroy", referenced from: > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0_php_session_class_functions in session= .o > =C2=A0 =C2=A0 =C2=A0"_zim_SessionHandler_gc", referenced from: > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0_php_session_class_functions in session= .o > =C2=A0 ld: symbol(s) not found for architecture x86_64 > =C2=A0 collect2: ld returned 1 exit status > =C2=A0 make: *** [sapi/cli/php] Error 1 > > Is it a known issue? > My ./configure was very simple: --prefix and --with-config-file-path were > the only arguments I used. > The issue doesn't appear with the tag php_5_4_0RC1, so it's a trunk relat= ed > issue. You need to clean your build: ./vcsclean ./buildconf --force ./configure -Hannes