Git Product home page Git Product logo

clay's Introduction

Clay 0.2-WIP

Clay is a programming language designed for Generic Programming.

Visit http://claylabs.com/clay for more information.

This is a work-in-progress branch. Documentation may be out of date, and source code compatibility may break at any time. The latest release branch is v0.1; for normal use you will want to switch to that branch:

git checkout v0.1

Pre-requisites

Clay requires CMake version 2.6 or later, and LLVM and Clang 3.2. Note that LLVM versions are not backward-compatible so developer versions of LLVM and/or later releases are not compatible with this version of Clay.

CMake Configuration

Clay uses CMake to configure and control its build system. The build can be customized by passing cmake arguments of the form "-D=" to set CMake variables. In addition to standard CMake variables such as CMAKE_INSTALL_PREFIX and CMAKE_BUILD_TYPE, Clay's build system uses the following variables:

  • LLVM_DIR can be set to the install prefix of an LLVM 3.2 installation. If not set, CMake will look for an 'llvm-config' script on the PATH.
  • PYTHON_EXECUTABLE can be set to the path of a Python 2.x interpreter. Clay uses a Python 2 script to drive its test suite. Some platforms (notably Arch Linux) use Python 3 as their 'python' executable, and this will confuse CMake. Pointing PYTHON_EXECUTABLE at 'python2' may be necessary on these platforms.

Build Clay on Unix-like Systems

To build Clay, first run cmake to generate the Makefiles and then run make. CMake can also build project files for IDEs such as Xcode. Look at CMake documentation for how to build those. It is recommended that Clay be built in a separate build directory.

mkdir build
cd build
cmake -G "Unix Makefiles" ../
make

The default installation directory for Clay is /usr/local. To change the installation path, pass -DCMAKE_INSTALL_PREFIX=/my/path to cmake.

To install Clay run

make install

To run the test suite

make test

To compile a clay source file run

clay ../examples/hello.clay

The generated binary

./hello

Build Clay on Windows with Visual C++

I use Visual C++ Express 2010 to build LLVM and Clay for Windows. From a Visual Studio command prompt, build LLVM and Clang using cmake and the MSVC compiler. There are some issues with Debug builds and LLVM, so both LLVM and Clay will need to be built as Release. The default LLVM install directory needs Administrator permissions, so you may want to set a CMAKE_INSTALL_PREFIX as well. to change it. Place the Clang repository in llvm-3.2/tools/clang so that LLVM builds it automatically and compile LLVM with the following commands:

mkdir build
cd build
cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=c:\llvm31-install -DCMAKE_BUILD_TYPE=Release ..
nmake install

Then to build Clay, run CMake and generate nmake makefiles:

mkdir build
cd build
cmake -G "NMake Makefiles" -DLLVM_DIR=c:\llvm31-install -DCMAKE_BUILD_TYPE=Release ..
nmake

Building under Cygwin or Mingw, or with Visual C++ using cmake's Visual Studio Solution generator, may also work, but I haven't tried it.

clay's People

Contributors

jckarter avatar stepancheg avatar drmaciver avatar sh4rk avatar blei avatar arunchaganty avatar ceninan avatar aep avatar galchinsky avatar crabtw avatar shalabhc avatar mrjbq7 avatar alfredr avatar jb55 avatar erg avatar kssreeram avatar igauravsehrawat avatar

Watchers

chenbk avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.