README 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. +--------------------------+
  2. | TIGCC-FRONTEND FOR LINUX |
  3. +--------------------------+
  4. Foreword from the packager
  5. --------------------------
  6. This program is a port of tigcc.exe, a Win32 program written in Delphi
  7. by Sebastian Reichelt. It has been written from scratch in C language.
  8. It should have the same behavior as the original.
  9. License
  10. -------
  11. TIGCC frontend For Linux
  12. Copyright (C) 2001 John David Ratliff
  13. Copyright (C) 2001-2002 Romain Liévin
  14. Copyright (C) 2002-2005 Kevin Kofler
  15. This program is free software; you can redistribute it and/or modify
  16. it under the terms of the GNU General Public License as published by
  17. the Free Software Foundation; either version 2 of the License, or
  18. (at your option) any later version.
  19. This program is distributed in the hope that it will be useful,
  20. but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. GNU General Public License for more details.
  23. You should have received a copy of the GNU General Public License
  24. along with this program; if not, write to the Free Software
  25. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  26. Usage
  27. -----
  28. This program is a front end for TIGCC: it will automatically call the
  29. necessary programs to compile everything you pass to it in the command
  30. line.
  31. John and Romain have written this program so that Windows users have a
  32. similar environment under Linux, but also for easily recompiling source
  33. code which has been developed under Windows.
  34. You should use ONLY this frontend or tprbuilder to compile TIGCC
  35. projects. Makefile hacks to directly use TIGCC components like gcc, as,
  36. patcher, ... are NOT supported and will probably NOT work.
  37. Examples
  38. --------
  39. You will find some examples in the tt and extgraph directories.
  40. You will find also a lot of examples in the different source packages
  41. available on Internet (more particularly www.ticalc.org).
  42. Simple file:
  43. tigcc -O2 -Wall HelloW.c (default: HelloW.89z)
  44. or tigcc -O2 -Wall HelloW.c -o foo (change to foo.89z)
  45. Multiple files:
  46. tigcc -O2 -Wall defs.c func-ti.c rpscript.c stdio-f.c sys.c
  47. str.c patches.c rpshash.c submalloc.c tiscript.c -o myvar
  48. Simple file against an archive:
  49. tigcc -O3 -Wall -W -fomit-frame-pointer demo1.c extgraph.a
  50. Simple file but compressed:
  51. tigcc -O2 ebook.c -pack ebookppg
  52. Thanks (by Romain Liévin)
  53. -------------------------
  54. Sebastian Reichelt: he has written tigcc.exe and ide.exe. Thanks
  55. for having replied to my questions.