home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / utils / spu / README < prev    next >
Text File  |  1994-06-27  |  1KB  |  40 lines

  1. This directory contains version 0.1 of the Software Productivity Unit
  2. (SPU, pronounced ``spew''), which is a random program generator.
  3.  
  4. To configure, say `./configure'.
  5.  
  6. To build, say `make'.
  7.  
  8. To run, say `spu'.  This will produce a set of .h and .c files, plus a .mk
  9. file which is a Makefile.  All the generated files share a prefix, which
  10. defaults to "file", and can be set with the `--prefix' option.
  11.  
  12. To compile the generated program, you can say either
  13.  
  14.     make -f file.mk
  15.  
  16. or
  17.  
  18.     gcc file*.c
  19.  
  20. By default, SPU does not generate a large program.  To generate larger
  21. programs, you can use the `--functions' option to set the number of
  22. functions that will be generated.  For instance, `--functions 10000'
  23. together with default values for the other options, will generate 600,000
  24. lines or about 10MB of source code.
  25.  
  26. To find out about the other available options, use the `--help' option.
  27.  
  28. TO DO
  29.  
  30. Finish describing the command options.
  31.  
  32. Generate more kinds of program constructs.
  33.  
  34. Add more kinds of macro generation.
  35.  
  36. Make the output code look more normal.
  37.  
  38. Generate runnable programs.
  39.  
  40.