项目作者: zsoltmester

项目描述 :
ABAP compiler.
高级语言: Yacc
项目地址: git://github.com/zsoltmester/simple-abap-compiler.git
创建时间: 2016-02-15T23:28:30Z
项目社区:https://github.com/zsoltmester/simple-abap-compiler

开源协议:

下载


ABAP compiler

It has less feature, than the original.

Compile this project

  1. - Step by step:
  2. flex lexical.l
  3. bisonc++ grammar.y
  4. g++ -o AbapSimple lex.yy.cc main.cc parse.cc
  5. - Or with the makefile:
  6. make