programming language compiler
Go to file
Sven Vogel bd368f99ef added: linker file discovery 2024-06-06 22:47:53 +02:00
.github/workflows initialized git submodule 2024-05-17 16:50:04 +02:00
dep added git submodule tomlc99 2024-05-31 12:05:22 +02:00
sdk fixed: llvm dependencies in sdk 2024-05-27 21:22:06 +02:00
src added: linker file discovery 2024-06-06 22:47:53 +02:00
tests transitioned from manual file utilites to glib 2024-06-06 11:26:26 +02:00
.clang-format added .clang-format 2024-05-26 19:03:23 +02:00
.env added llvm17-dev as dependency to sdk 0.2.5 2024-05-27 19:53:22 +02:00
.gitignore added test for llvm vars 2024-05-27 16:47:32 +02:00
.gitmodules added git submodule tomlc99 2024-05-31 12:05:22 +02:00
CMakeLists.txt Merge remote-tracking branch 'origin/main' into 85-implement-llvm-backend 2024-06-04 11:57:45 +02:00
Dockerfile Merge remote-tracking branch 'origin/main' into 85-implement-llvm-backend 2024-06-04 11:57:45 +02:00
LICENSE added GPLv2.0 license 2024-04-10 13:44:50 +02:00
README.md added section about writing tests to README 2024-05-02 09:59:42 +02:00
run-check-test.sh added llvm17-dev as dependency to sdk 0.2.5 2024-05-27 19:53:22 +02:00
run-docker-build.sh fixed: llvm dependencies in sdk 2024-05-27 21:22:06 +02:00

README.md

Gemstone

Gemstone is a programming language compiler written in C with lex and yacc.

Dependencies (build)

Windows 11

For setup instruction see issue #30

Requires:

  • Microsoft Build Tools 2022 (includes: CMake, MSVC)
  • WinFlexBison find it here (needs to be in PATH)

GNU/Linux

Requires:

  • GCC
  • CMake
  • Make
  • bison
  • flex

Writing Tests

Since the project is build and configured through CMake it makes sense to rely for tests on CTest. All tests are located in the subfolder tests. In this directory is a CMakeLists.txt which specifies which tests are to be run. Actual tests are located in folders within tests and contain a final CMakeLists.txt which specifies what to run for a single test.

tests
  └─ test_group1
      └─ CMakeLists.txt  # specify tests in this group
      └─ ...             # test files of group 1
      
  └─ test_group2
      └─ CMakeLists.txt  # specify tests in this group
      └─ ...             # test files of group 2
      
  └─ CMakeLists.txt      # specify test groups to run
  
CMakeLists.txt           # build configuration

Development with VSCode/Codium

Recommended extensions for getting a decent experience are the following:

In order to remove false error messages from clangd CMake has to be run once in order generate compile_commands.json.

Build

The build pipeline is configured with CMake in the file CMakeLists.txt. In order to avoid dependency and configuration issues the recommended way to build is by using the provided docker containers. All tools required for building (cmake, make, gcc, lex, yacc) are installed inside the SDK container (see Dockerfile sdk/Dockerfile). For creating the build pipeline build the Dockerfile in the root folder of this repository. This takes the current SDK and copies the source files into the home of the build user. Then the make targets are generated. Running make release will build gemstone from source in release mode. The generated binaries can be found either in bin/release/gsc or bin/debug/gsc depending on the chosen target. The following graph visualizes the build pipeline:

                 SDK (environment)
                  │
                  │ configure build environment
                  │  cmake, make, gcc, yacc, lex
                  │
                  ▼
                 Devkit (pipeline)
                  │
                  │ create build pipeline
                  │  create make targets
                  ▼
                 Pipeline
     

yacc (generate files)    GCC (compile)   Extra Source Files (src/*.c)
│                             │                     │
├─ parser.tab.h ─────────────►│◄────────────────────┘
│                             │
└─ parser.tab.c ─────────────►│
                              │
lex (generate file)           │
│                             │
└─ lexer.ll.c  ──────────────►│
                              │
                              ▼
                             gsc

Docker images

Currently, the SDK is based on Almalinux 9.3, an open source distro binary compatible to RHEL 9.3.

The following images can be found in the offical repository at Docker Hub:

  • SDK
  • Devkit