X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=README.epoc;h=f688b46c05a9b04f023bfb2511f126dbe4d917e6;hb=b5ab506977d1ee50356f33e5eebd52b6102eecb5;hp=88d2e5ed83aa94f1b50af576c94b03ee9881bc2c;hpb=14bdf8d3bfc4c68a9e0d4420c4db2eccd669ea5d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/README.epoc b/README.epoc index 88d2e5e..f688b46 100644 --- a/README.epoc +++ b/README.epoc @@ -1,42 +1,79 @@ -================================================= +If you read this file _as_is_, just ignore the funny characters you +see. It is written in the POD format (see pod/perlpod.pod) which is +specially designed to be readable as is. + +=head1 NAME + +README.epoc - Perl for EPOC + +=head1 SYNOPSIS + Perl 5 README file for the EPOC operating system. -================================================== -Olaf Flebbe -http://www.linuxstart.com/~oflebbe/perl/perl.html -1999-11-01 +=head1 INTRODUCTION + +EPOC is a OS for palmtops and mobile phones. For more informations look at: +http://www.symbian.com/ + +This is a port of perl to EPOC. It runs on ER5 machines: Psion 5mx, +5mx Pro, Psion Revo and on the Ericson M128. I have no report about +the Psion Netbook or the S7. It runs on ER3 Hardware (Series 5 +classic), too. For more information about this hardware please refer +to http://www.psion.com. + +Vendors which like to have support for their devices are free to send +me a sample. + +=head1 INSTALLING PERL ON EPOC + +You can download a ready-to-install version from +http://www.science-computing.de/o.flebbe/perl. You may find other +versions with some CPAN modules included at this location. + +You will need at least ~4MB free space in order to install and run +perl. -Introduction ------------- +Install perl.sis on the EPOC machine. If you do not know how to do +that, consult your PsiWin documentation. -This is a port of Perl version 5.005_62 to EPOC. +Perl itself and its standard library is using 2.5 MB disk space. +Unicode support and some other modules are left out. (For details, +please look into epoc/createpkg.pl). If you like to use these modules, +you are free to copy them from a current perl release. -There are many features left out, because of restrictions of the POSIX -support in the SDK. +=head1 STARTING PERL ON EPOC +For ER5 machines, you can get the software Perlstart +http://www.science-computing.de/o.flebbe/perl. It contains file +recognizers for files with the extension .pl and .pm. With it you can +start perl with a double click on the camel icon. Be sure to configure +the perl installation drive first. You can even provide a script with +a special commandline, if needed. -Installation/Usage ------------------- +Alternativly you can get ESHELL from symbian: +http://developer.epocworld.com/downloads/progs/Eshell.zip -You will need ~4MB free space in order to run perl. +Running ESHELL you can enter: perl -de 0 in order to run the perl +debugger. If you are leaving perl, you get into the system screen. You +have to switch back manually to ESHELL. When perl is running, you will +see a task with the name STDOUT in the task list. -Install perl.sis on the EPOC machine (most likely a PSION Series -5). If you do not know how to do that, you are on your own. You may -have to use a CF Card in order to work with perl. The perl debugger -uses more then 1.5 MB additional RAM. The heap is limited to 2 MB. +If you have a ER3 machine (i.e. a PSION 5), you may have to supply the +full path to the perl executable C:\system\programs\perl.exe. -Perl itself and its standard library are using 1.7MB disk space. I -left out UTF support and modules which will not work with this -version. (For details look into epoc/createpkg.pl). +If you need to set the current directory of perl, please use the +command line switch '-x'. See L for details. -Copy eshell.exe to the same location as perl. Start eshell.exe with a -double click. +=head1 STOPPING PERL ON EPOC -Now you can enter: perl -de 0 in order to run the perl debugger. If -you are leaving perl, you have to switch back manually to eshell.exe -(With Ctrl-System or the button in the upper right corner of the -System screen.) When perl is running, you will see a task with the -name STDOUT in the task list. +You can stop a running perl process in the task list by closing the +application `STDOUT'. You cannot stop a running perl process if it has +not written anyting to stdout or stderr! Be very cautious with I/O +redirection. You will have to reboot the PDA! + +=head1 USING PERL ON EPOC + +=head2 I/O Redirection You can redirect the output with the UNIX bourne shell syntax (this is built into perl rather then eshell) For instance the following command @@ -45,89 +82,150 @@ stdout_file, the errors to stderr_file and input from stdin_file. perl test.pl >stdout_file stderr_file -Alternativly you can use 2>&1 in order to add the standard error output to -stdout. +Alternatively you can use 2>&1 in order to add the standard error +output to stdout. + +=head2 PATH Names + +ESHELL looks for executables in ?:/System/Programs. The SIS file +installs perl in this special folder directory. The default drive and +path are the same as folder the executable resides. The EPOC +filesystem is case-preserving, not case-sensitive. + +The EPOC estdlib uses the ?: syntax for establishing a search order: +First in C: (RAM), then on D: (CF Card, if present) and last in Z: +(ROM). For instance ?:\a.txt searches for C:\a.txt, D:\a.txt (and +Z:\a.txt) + +The perl @INC search path is implemented with '?:'. Your perl +executable can live on a different drive than the perl library or even +your scripts. + +ESHELL paths have to be written with backslashes '\', file arguments +to perl with slashes '/'. Remember that I/O redirection is done +internally in perl, so please use slashes for redirects. + +perl.exe C:/test.pl >C:/output.txt + +=head2 Editors + +A suitable text editor can be downloaded from symbian + http://developer.epocworld.com/downloads/progs/Editor.zip + +=head2 Features + +The built-in function EPOC::getcwd returns the current directory. + +=head2 Restrictions + +Features are left out, because of restrictions of the POSIX support in +EPOC: + +=over 4 + +=item * + +backquoting, pipes etc. + +=item * + +system() does not inherit ressources like: file descriptors, +environment etc. + +=item * + +signal, kill, alarm. Do not try to use them. This may be +impossible to implement on EPOC. + +=item * + +select is missing. + +=item * + +binmode does not exist. (No CR LF to LF translation for text files) + +=item * + +EPOC does not handle the notion of current drive and current +directory very well (i.e. not at all, but it tries hard to emulate +one) See PATH. -Pathnames to executables in eshell.exe have to be written with -backslashes, file arguments to perl with slashes. The default drive of -perl is the same as the drive perl.exe is located on, the default path -is the path perl.exe is / (???). +=item * -i.e. command lines look a little bit funny: +Heap is limited to 4MB. -D:\perl.exe C:/test.pl >C:/output.txt +=item * -In order to use Getopt::Long you have to autosplit this module by hand: run +Dynamic loading is not implemented. -\perl.exe \autosplit.pl in order to create the necessary files. +=back -You may have a problem to create perl scripts. A cumbersome workaround -is to use the OPL Editor and exporting to text. +=head2 Compiling Perl 5 on the EPOC cross compiling environment -Problems --------- +Sorry, this is far too short. -The following known problems exist: +=over 4 -1) no support for system, backquoting, pipes etc. One cannot exec a - different process. +=item * -2) no signals, kill, alarm. Do not try to use them. This may be - impossible to implement on EPOC. +You will need the C++ SDK from http://developer.epocworld.com/. -3) select is missing. +=item * -4) binmode does not exist. (No CR LF to LF translation for text files) +You will need to set up the cross SDK from +http://www.science-computing.de/o.flebbe/sdk -5) Only a stub Config.pm +=item * -6) EPOC does not handle the notion of current drive and current - directory very well (i.e. not at all, but it tries hard to emulate - one) +You may have to adjust config.sh (cc, cppflags) to reflect your epoc +and SDK location. -7) sockets may hardly of any use. +=item * -8) You need the shell eshell.exe in order to run perl.exe and supply - it with arguments. +Get the Perl sources from your nearest CPAN site. +=item * -Compiling Perl 5 on the EPOC cross compiling envionment. --------------------------------------------------------- +Unpack the sources. -0. You will need the C++ SDK from - http://developer.epocworld.com/. Install it on a separate - drive. +=item * -1. Get the Perl sources from your nearest CPAN site. - Unpack the sources of perl5.005_60 in the epoc development drive. - -2. Copy all files in the directory perl5.005_60/epoc to perl5.005_60. +Build a native perl from this sources... Make sure to save the +miniperl executable as miniperl.native. -3. Check the perl.mmp file: It should have the correct locations for - project und subproject (see step 1) +Start again from scratch -4. Change to the EPOC development drive and run - makmake perl marm - nmake -f perl.marm - makesis perl.pkg perl5.005.sis + cp epoc/* . + ./Configure -S + make + cp miniperl.native miniperl + make + make ext/Errno/pm_to_blib + perl link.pl perlmain.o lib/auto/DynaLoader/DynaLoader.a \ + lib/auto/Data/Dumper/Dumper.a \ + lib/auto/File/Glob/Glob.a lib/auto/IO/IO.a \ + lib/auto/Socket/Socket.a \ + lib/auto/Fcntl/Fcntl.a lib/auto/Sys/Hostname/Hostname.a \ + perl.a `cat ext.libs` + perl createpkg.pl -5. Beam the perl5.005.sis to the Psion5, install and enjoy! + wine G:/bin/makesis perl.pkg perl.sis -You can use epoc\createpkg.pl to generate a new perl.pkg file. +=back +=head1 SUPPORT STATUS -Wish List ---------- +I'm offering this port "as is". You can ask me questions, but I can't +guarantee I'll be able to answer them. -- Implement an OPX to get rid of eshell.exe. +=head1 AUTHOR -- Implement system(), in order to run the tests. +Olaf Flebbe +http://www.science-computing.de/o.flebbe/perl/ -- Implement getprotcolbyname() and relatives. +=head1 LAST UPDATE -Support Status --------------- +2001-02-26 -I'm offering this port "as is". You can ask me questions, but I can't -guarantee I'll be able to answer them; I don't know much about Perl -internals myself; +=cut