Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Latest commit

 

History

History
25 lines (17 loc) · 799 Bytes

development.md

File metadata and controls

25 lines (17 loc) · 799 Bytes

Development

Environment

  1. EESlab VM (gcc bereits installiert)
  2. Java Development Kit installieren
    • sudo apt install default-jdk -> Mit dem JDK ist dann möglich Core JDK Tools wie javac (=Compiler) und javap (=Disassembler) zu nutzen
  3. Go installieren: Tutorial
  4. VS Code + Extensions (optional)

Bytecode

  • javac Blinky.java erstellt Bytecode Blinky.class (hexadecimal)
  • javap -c Blinky zeigt disassemblierten Bytecode an
  • Blinky Output

Code ausführen

  • Ausführen via go run *.go im Ordner src
  • Kompilieren via go build im Ordner src

Errors

  • Go not found -> source ~/.profile ausführen