Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 591 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 591 Bytes

Compiler Project

Group Members: Brandon Prak, Riley Kuttruff, Adam Do

Software Versions:

  • JDK - 11.0.8
  • JFlex - 1.8.2
  • CUP - 0.11b

To Compile Project 1:

  1. Open terminal
  2. Navigate to where the files are located (e.g. C:/Desktop/Compiler-Project/src/)
  3. Type 'javac *.java'

To Run Project 1: java Main <input file>

To Compile Project 2:

  1. Open terminal
  2. Navigate to where the files are located (e.g. C:/Desktop/Compiler-Project/src/)
  3. Type 'javac -cp ".;java-cup-11b.jar" Main.java'

To Run Project 2: java -cp ".;java-cup-11b.jar" Main <input file>