Skip to content

kassane/opend

 
 

Repository files navigation

This is the OpenD Programming Language compiler, originally based on Walter Bright's D Programming Language.

This repo contains a Digital Mars based compiler, a LLVM based compiler, the unified runtime, and portions of the standard library.

See: https://docs.github.com/en/get-started/using-git/about-git-subtree-merges

ldc and phobos are both subtrees from upstream.

Quick start

mkdir opend_workspace

git clone git@github.com:opendlang/opend.git
cd opend && make && cd ..
// build Phobos
cd phobos && make && cd ../..

ln -s opend/phobos
alias odmd=opend/generated/linux/release/64/dmd

echo "import std.stdio; void main() { writeln(\"Hello OpenD!\");}" > hello_opend.d
odmd hello_open.d
./hello_opend

And hope it works!

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Languages

  • D 85.8%
  • C++ 5.9%
  • HTML 5.2%
  • C 2.5%
  • CMake 0.2%
  • Shell 0.2%
  • Other 0.2%