From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/38254 Path: news.gmane.org!not-for-mail From: Gour Newsgroups: gmane.comp.tex.context Subject: luatex on x86_64 Date: Mon, 24 Dec 2007 17:22:18 +0100 Message-ID: <20071224172218.5a827a8d@gaura-nitai.dyndns.org> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0166375804==" X-Trace: ger.gmane.org 1198513427 29771 80.91.229.12 (24 Dec 2007 16:23:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 24 Dec 2007 16:23:47 +0000 (UTC) To: mailing list for ConTeXt users Original-X-From: ntg-context-bounces@ntg.nl Mon Dec 24 17:23:57 2007 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by lo.gmane.org with esmtp (Exim 4.50) id 1J6q5r-0004nl-4P for gctc-ntg-context-518@m.gmane.org; Mon, 24 Dec 2007 17:23:55 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 2A7D31FC01; Mon, 24 Dec 2007 17:23:17 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 19623-01-2; Mon, 24 Dec 2007 17:23:06 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 084331FBCB; Mon, 24 Dec 2007 17:23:06 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 383521FBC9 for ; Mon, 24 Dec 2007 17:23:04 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 19756-01-4 for ; Mon, 24 Dec 2007 17:22:30 +0100 (CET) Original-Received: from hu-out-0506.google.com (hu-out-0506.google.com [72.14.214.235]) by ronja.ntg.nl (Postfix) with ESMTP id DD61A1FBCB for ; Mon, 24 Dec 2007 17:22:30 +0100 (CET) Original-Received: by hu-out-0506.google.com with SMTP id 32so1670686huf.19 for ; Mon, 24 Dec 2007 08:22:30 -0800 (PST) Original-Received: by 10.78.193.19 with SMTP id q19mr5844193huf.69.1198513349785; Mon, 24 Dec 2007 08:22:29 -0800 (PST) Original-Received: from gaura-nitai.dyndns.org ( [89.164.237.86]) by mx.google.com with ESMTPS id i4sm356859nfh.36.2007.12.24.08.22.28 (version=SSLv3 cipher=OTHER); Mon, 24 Dec 2007 08:22:29 -0800 (PST) X-Mailer: Claws Mail 3.2.0 (GTK+ 2.12.1; x86_64-unknown-linux-gnu) X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.9 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:38254 Archived-At: --===============0166375804== Content-Type: multipart/signed; boundary="Sig_/fWn78AuResfH7G51+6cwGTV"; protocol="application/pgp-signature"; micalg=PGP-SHA1 --Sig_/fWn78AuResfH7G51+6cwGTV Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi! I'm sold to luatex and plan to use it exclusively for all ConTeXt typesetting in order to help somewhat with testing it. However, I've some old lyx/latex stuff which needs to be migrated, so I'd prefer to keep my texlive installation for such stuff and having minimal ConTeXt installation to be able to typeset with luatex. There is pretty new PKGBUILd script for Arch Linux and I modified it a bit (see http://tinyurl.com/3yk6vw) in order to built luatex on x86_64. However, I see that build.sh.linux (for i386) and build.sh script differs, and the PKGBUILD created just /opt/texlive/bin/luatex executable. Not having access to i686 (i386) machine, I wonder what else is required to have working luatex installation? The content of /opt/texlive/bin/luatools script is: #!/bin/sh texmfstart luatools.lua "$@" Running "Hello world" example gives: gour@gaura-nitai ~/tmp> texexec --lua test.tex TeXExec | processing document 'test.tex' TeXExec | no ctx file found TeXExec | tex processing method: context TeXExec | TeX run 1 TeXExec | writing option file test.top TeXExec | using randomseed 1079 TeXExec | tex engine: luatex TeXExec | tex format: cont-en the file 'luatools' is not found TeXExec | runtime: 0.308419 Here is the build() function from PKGBUILD: build() { cd $startdir/src/$pkgname-$pkgver if [ "${CARCH}" =3D "i686" ]; then cp $startdir/src/$pkgname-$pkgver/build.sh.linux $startdir/src/$pkgname-$pkgver/build.sh fi ./build.sh --datadir=3D/opt/texlive || return 1=20 # Overwrite old files # make $PREFIX=3D$startdir/pkg/$pkgname-$pkgver install || return 1 =20 install -d $startdir/pkg/opt/texlive/bin if [ "${CARCH}" =3D "i686" ]; then install -m 755 linux/texk/web2c/luatex $startdir/pkg/opt/texlive/bin else install -m 755 build/texk/web2c/luatex $startdir/pkg/opt/texlive/bin fi } Here are outputs from texexec & luatex: gour@gaura-nitai ~/tmp> texexec --lua test.tex TeXExec | processing document 'test.tex' TeXExec | no ctx file found TeXExec | tex processing method: context TeXExec | TeX run 1 TeXExec | writing option file test.top TeXExec | using randomseed 152 TeXExec | tex engine: luatex TeXExec | tex format: cont-en the file 'luatools' is not found TeXExec | runtime: 0.257507 gour@gaura-nitai ~/tmp> luatex test.tex This is LuaTeX, Version snapshot-0.20.2-2007122417 (Web2C 7.5.6) I can't find the format file `luatex.fmt'! So, something is missing...any pointer for up-to-date doc (url) for installing/updating of minimal ConTeXt/luatex on x86_64 ? Sincerely, Gour --Sig_/fWn78AuResfH7G51+6cwGTV Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (GNU/Linux) iD8DBQFHb9y7UuI9PZqisFQRAtEyAKCHeH6KnUtxAOuP9KvIN9BnEPu5wwCdEFgy BZivY9/Fk/XnxD0VjdthDQc= =CzIJ -----END PGP SIGNATURE----- --Sig_/fWn78AuResfH7G51+6cwGTV-- --===============0166375804== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki! maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://tex.aanhet.net archive : https://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________ --===============0166375804==--