diff options
author | Alex Waugh <alex@alexwaugh.com> | 2006-04-17 01:14:26 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-04-18 12:48:31 +0000 |
commit | 7ee146b12403586cf7249a676b2be9b7658f67fd (patch) | |
tree | 1b79a89c55197bf11d0879b5cceab0caa61a53a5 /hints | |
parent | 4154741246a440c7ccc4e633e6d115949af4ee56 (diff) | |
download | perl-7ee146b12403586cf7249a676b2be9b7658f67fd.tar.gz |
Support compiling for RISC OS
Message-ID: <2498b2184e.ajw498@caramel.cp15.org>
p4raw-id: //depot/perl@27884
Diffstat (limited to 'hints')
-rw-r--r-- | hints/riscos.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/hints/riscos.sh b/hints/riscos.sh new file mode 100644 index 0000000000..e87e99ce14 --- /dev/null +++ b/hints/riscos.sh @@ -0,0 +1,20 @@ +#! /bin/sh +# riscos.sh - hints for building perl using the gccsdk cross compiler for RISC OS +# + + +cc='gcc' +locincpth="" +ccflags="-mpoke-function-name -DDYNAMIC_ENV_FETCH -DPERL_USE_SAFE_PUTENV" +prefix='/<Perl$Dir>' +osname='riscos' +libpth=' ' +optimize='-O2' +myarchname='' +archname='arm-riscos' +installprefix='~/PerlInst' +mkdir -p $installprefix +startperl="#!/usr/bin/perl" +i_shadow='undef' +ebcdic='undef' + |