Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:27547 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 29542 invoked by uid 1010); 20 Jan 2007 06:52:23 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 29527 invoked from network); 20 Jan 2007 06:52:23 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 20 Jan 2007 06:52:23 -0000 Authentication-Results: pb1.pair.com smtp.mail=kiran.malla@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=kiran.malla@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 64.233.182.190 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: kiran.malla@gmail.com X-Host-Fingerprint: 64.233.182.190 nf-out-0910.google.com Linux 2.4/2.6 Received: from [64.233.182.190] ([64.233.182.190:32790] helo=nf-out-0910.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 68/F0-18039-62CB1B54 for ; Sat, 20 Jan 2007 01:52:23 -0500 Received: by nf-out-0910.google.com with SMTP id l35so776655nfa for ; Fri, 19 Jan 2007 22:52:20 -0800 (PST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=o+uDKxUKy0/d9KfPTLgI0YQaa29cMCYYn77y/kBcT2ItBUTyQc5uswP5rUNn4KReGWmOWmaF9Q8QyioOFQzxl42qyZ5OqUroQhZ3d9062lz+l0kjJ+i+RRtUHoOsFkQJHGYI58hCZwALx4RzVnJfsMUBMaVvUL/JjcgCmbeDavM= Received: by 10.82.135.13 with SMTP id i13mr1920764bud.1169275939927; Fri, 19 Jan 2007 22:52:19 -0800 (PST) Received: by 10.82.134.9 with HTTP; Fri, 19 Jan 2007 22:52:19 -0800 (PST) Message-ID: <613590910701192252t766f9831w1085e5450fa7e7ea@mail.gmail.com> Date: Sat, 20 Jan 2007 12:22:19 +0530 To: internals@lists.php.net MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_160998_22900640.1169275939868" Subject: PHP Cross Compilation for Arm From: kiran.malla@gmail.com ("Kiran Malla") ------=_Part_160998_22900640.1169275939868 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello, I am trying to cross compile PHP-5.2.0 for arm linux. # export CC=/usr/local/arm/3.3.2/bin/arm-linux-gcc # export AR=/usr/local/arm/3.3.2/bin/arm-linux-ar # export LD=/usr/local/arm/3.3.2/bin/arm-linux-ld # export NM=/usr/local/arm/3.3.2/bin/arm-linux-nm # export RANLIB=/usr/local/arm/3.3.2/bin/arm-linux-ranlib # export STRIP=/usr/local/arm/3.3.2/bin/arm-linux-strip # ./configure --host=arm-linux --sysconfdir=/etc/appWeb --with-exec-dir=/etc/appWeb/exec Result of this configure is, . . . Checking for iconv support... yes checking for iconv... no checking for libiconv... no checking for libiconv in -liconv... no checking for iconv in -liconv... no configure: error: Please reinstall the iconv library. I have installed libiconv-1.11 on my system. The command 'which iconv' shows '/usr/local/bin/iconv'. I have no clue why configure is failing due to missing iconv. Please throw some light on this issue. What are all the flags and variables to set to cross compile PHP for arm? If anyone has tried php on arm linux, please let me know the steps. Regards, ------=_Part_160998_22900640.1169275939868--