9
0
Fork 0
nuttx-bb/apps/interpreters/ficl
Gregory Nutt 5a79aa40e5 Add an install target to all makefiles. For the import build, the top-level Makefile now does two passes: (1) builds libapp.a, then (2) installs the programs (not yet finished) 2014-09-06 08:00:47 -06:00
..
src Ported Ficl to NuttX apps/ 2011-05-10 18:18:19 +00:00
.gitignore Clone svn:ignore directory atributed to .gitignore files 2013-04-04 14:27:29 -06:00
Kconfig All ZNEO configurations converted to use the mconf/Kconfig tool 2012-11-29 18:44:02 +00:00
Makefile Add an install target to all makefiles. For the import build, the top-level Makefile now does two passes: (1) builds libapp.a, then (2) installs the programs (not yet finished) 2014-09-06 08:00:47 -06:00
README.txt Removed all support for the legacy configuration mechanism from the apps/ directory 2014-03-06 12:21:14 -06:00
configure.sh Ported Ficl to NuttX apps/ 2011-05-10 18:18:19 +00:00

README.txt

apps/interpreter/README.txt
===========================

Ficl is a programming language interpreter designed to be embedded into
other systems as a command, macro, and development prototyping language.
Ficl is an acronym for "Forth Inspired Command Language". See
http://ficl.sourceforge.net/

Build Instructions
------------------

Disclaimer:  This installation steps have only been exercised using Ficl
4.1.0.  With new versions you will likely have to make some adjustments
to this instructtions or to the files within this directory.  Think of this
information as "recommendations" -- not necessarily proven instructions.

1. CD to apps/interpreters/ficl

2. Download Ficl: http://sourceforge.net/projects/ficl/files/

3. Uznip the Ficl compressed file.

   For example, 'unzip ficl-4.1.0.zip' will leave the file
   apps/interpreters/ficl/ficl-4.1.0

4. Configure to build Ficl in the apps/interpreters/ficl directory using
   the configure.sh script.

   For example, './configure.sh ficl-4.1.0' will leave the Makefile
   fragment 'Make.srcs' in the ficl build directory.

5. Create your NuttX configuration.  Using the 'make menuconfig', you
   should select:

     CONFIG_INTERPRETERS_FICL=y

6. Configure and build NuttX.  On successful completion, the Ficl objects
   will be available in apps/libapps.a and that NuttX binary will be
   linked against that file.  Of course, Ficl will do nothing unless
   you have written some application code that uses it!