C compiler with embedded metalanguage.
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
Theo Souchon 38b6693d23 Changing the readme há 2 anos
media Modification of the README.md há 2 anos
parsimonyLibrary Update dynamicObject.mc há 2 anos
tests-c added comments where the test fails há 3 anos
tests-cpp test folders há 3 anos
tests-err updated comments há 3 anos
tests-gnu deleted *.out files há 3 anos
tests-parsimony Simplification of dynamicObject.mc há 2 anos
tests-std deleted *.out files há 3 anos
.gitignore append part almost done & beginning of map function há 2 anos
AUTHORS Add AUTHORS and .gitignore há 3 anos
LICENSE Initial commit há 3 anos
Makefile Adding flags for HOMEBREW and update of the gitignore há 2 anos
README.md Changing the readme há 2 anos
buffer.h Initial import of framework. há 3 anos
ccmeta-input.txt new input file with dynamic C expression há 3 anos
ccmeta.leg Simplification of dynamicObject.mc há 2 anos
debug.c added a file to help debug há 3 anos
dotest updated dotest há 3 anos
object.c Fix code há 2 anos
protoNumber.txt Total independence of parsimony há 2 anos
scope.c updated scopes to be easier to manipulate há 3 anos
testPars.sh new test file and some advances in realObject há 2 anos

README.md

CCMETA

C compiler with embedded metalanguage.

Table of contents

  1. Architecture
  2. Build the project
  3. Usage
  4. Help

Architecture

alt text

Go to the table of contents

Build the project

Requirements

Please install peg/leg manually or with a package manager, for example with Homebrew:

$ brew install peg

Please install the Boehm-Demers-Weiser conservative garbage collector manually or with a package manager, for example with Homebrew:

$ brew install bdw-gc

Makefile

Compatible with the homebrew installed on the apple silicon ship

Build

$ make

Clean

$ make clean

Test

$ make test

Go to the table of contents

Usage

How it works

You can pass your program:

  • via an input file
$ ./ccmeta < file
  • via a file
$ ./ccmeta file

Check each test file to get an idea of how parsimony works

Go to the table of contents

Help

peg/leg

$ man peg

Go to the table of contents