Home

Awesome

Cone Programming Language

Cone is a fast, fit, friendly, and safe systems programming language. It features:

The Cone compiler is currently under development. The current status and next steps are documented in PLAN.md.

Documentation and Other Resources

The Cone home repository offers a rudimentary build environment for Cone programs, including the Congo build tool and additional example Cone programs.

Language Features

When finished, Cone will support these features:

Building (Windows)

A Visual Studio C++ solution can be created using the Cone.vcxproj project file. The generated object and executable files are created relative to the location of the solutions file.

The build depends on LLVM 13 being installed and libs/includes found at $(LLVMDIR).

Building LLVM on Windows can be a pain. Some notes:

  1. Download llvm-13.0.0.src.tar.xz from https://github.com/llvm/llvm-project/releases
  2. Extract the src to a path having no spaces (e.g., D:\libs\llvm-13.0.0.src)
  3. Make sure you have a recent version of CMake (which has CMake-GUI)
  4. Use CMake-GUI to configure. Fill in the source folder (above) and a new target folder (D:\libs\llvm-13.0.0.build) and hit Configure button
    • When it asks if build folder should be created, say Yes
    • When it prompts for a generator, specify the Visual Studio version installed (e.g., 15).
    • In next drop down, select "Win32" to build 32-bit compiler.
  5. In CMake-Gui, change defaults if you want (e.g., 32-bit target triple is i686-pc-win32), and then hit "Generate" button.
  6. From build folder, double clicked on llvm.sln file to open Visual Studio.
    • Select Release, and then build ALL_BUILD
    • Select Debug, and then build ALL_BUILD. (fails if not enough memory, shut all pgms off)
  7. Copy llvm-c from llvm-13.0.0.src/include to llvm-13.0.0.build/include
  1. In command prompt: setx LLVMDIR d:\libs\llvm-13.0.0.build\

Building (Linux and WSL in Windows)

To build on Linux:

sudo apt-get install llvm-13-dev
cmake .
make

Note: Sometimes, it is necessary to custom-build LLVM, e.g.:

mkdir llvm
cd llvm
svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm-src
cd llvm-src/tools
svn co http://llvm.org/svn/llvm-project/cfe/trunk clang
svn co http://llvm.org/svn/llvm-project/lld/trunk lld
cd ../..
mkdir llvm-build
cd llvm-build
CC=clang CXX=clang++ cmake -G "Unix Makefiles" -DLLVM_BUILD_LLVM_DYLIB=ON -DCMAKE_INSTALL_PREFIX=/llvm/wasm -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly /llvm/llvm-src
make
make install

Building (Mac OS)

To build on Mac OS:*

brew install --with-toolchain llvm
llvm-config --bindir

CMake will auto-detect LLVM, so all you should need to do:

cmake .
make

More detailed instructions: https://github.com/git-yledu/cone-misc/blob/main/install_cone_on_mac.md

License

The Cone programming language compiler is distributed under the terms of the MIT license. See LICENSE and COPYRIGHT for details.