Skip to content

configure and cross-compile perl

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
Copying
Notifications You must be signed in to change notification settings

arsv/perl-cross

Folders and files

NameName
Last commit message
Last commit date

Latest commit

91cbd94 · Mar 15, 2025
Mar 15, 2025
Jan 28, 2019
Sep 5, 2016
Feb 4, 2025
Feb 16, 2014
Feb 16, 2014
Feb 16, 2014
May 22, 2023
Jan 10, 2020
Jan 22, 2017
Jan 27, 2019
Feb 16, 2014
May 22, 2023
Jun 3, 2015
Jul 29, 2014
Nov 20, 2023
Aug 14, 2022
Oct 30, 2014

Repository files navigation

perl-cross provides configure script, top-level Makefile and some auxiliary files for perl,
with the primary emphasis on cross-compiling the source.

# Get perl and perl-cross sources
curl -L -O http://www.cpan.org/src/5.0/perl-5.24.1.tar.gz
curl -L -O https://github.com/arsv/perl-cross/releases/download/1.1.3/perl-cross-1.1.3.tar.gz

# Unpack perl-cross over perl, overwriting Makefile
tar -zxf perl-5.24.1.tar.gz
cd perl-5.24.1
tar --strip-components=1 -zxf ../perl-cross-1.1.3.tar.gz

# Proceed as usual with most autoconfed packages
./configure --target=arm-linux-gnueabi --prefix=/usr -Duseshrplib
make -j4
make DESTDIR=/path/to/staging/dir install

Unlike mainline Perl, this configure never runs any target executables,
relying solely on compile/link tests and pre-defined hints.
On the flip side, it is only meant to run on resonably sane modern unix systems.

Check project pages for more info.
In particular, configure usage lists available configure options.

Perl-cross is a free software licensed under the same terms as the original perl source.
See LICENSE, Copying and Artistic files.