RSS 8 projects tagged "build system"

No download No website Updated 20 May 2010 Prebake

Screenshot
Pop 31.18
Vit 33.32

Build systems fail to scale to large projects when rebuilding a small portion requires stat-ing every project file. Prebake is a build system that uses a long-lived service to hook into the file-system and watch for changes so it can avoid unnecessary I/O for incremental builds. It also solves common problems with Ant and Make: missing dependencies and build cruft from deleted source files. It does away with missing dependencies by doing away with explicit dependencies altogether. Build dependencies are inferred by intersecting globs; if one product takes *.c and produces *.o, and another takes *.o and produces *.lib, then the latter depends on the former. Prebake also gets the benefits of both a declarative build syntax (a la make) and the flexibility of hand coded shell scripts. It uses tightly sandboxed JavaScript and "mobile functions" to get the flexibility of a scripting language with the hard controls on side effects that allow for repeatable builds. In practice, the JS in build files looks declarative, like JSON, but the dynamism is there when you need it.

No download Website Updated 21 Dec 2010 EBuild

Screenshot
Pop 43.58
Vit 1.00

EBuild is a software project build, dependency management, and reporting technology. The aim is to be able to tackle any build problem in a structured, declarative, and elegant way. It is written in Java, but can be used to build all manner of projects and is extensible via a plugin interface. It is best compared to something like Maven (and in some respects Ivy). It aims to overcome certain design flaws and the resultant unnecessary complexity. The EBuild build model is general, but plugins need to be written in a JVM compatible language. Existing plugins all deal with the Java ecosystem, so EBuild is most suitable for Java and mixed technology software projects.

Download No website Updated 30 Dec 2010 Lattice

Screenshot
Pop 21.40
Vit 29.55

Lattice is a Java build system with strong multi-module support. Build files are written not in XML, but in the Python language. The benefits are much better readability and powerful imperative build scripting. For multi-module projects, Lattice uses topological sorting to decide the correct order to build each module. Because a custom task is just a regular Python function, they can perform any type of work, including invoking other Java build systems such as Ant, Maven, or Ivy.

No download No website Updated 27 Apr 2011 crumb

Screenshot
Pop 27.50
Vit 27.51

crumb is an experimental build-automation program to provide functionality similar to "make" but with a much better approach, where dependencies for all invocations are automatically detected, by using shared-library level hooks. The spawned processes are also paused if a missing dependency needs to be generated. Oddly, with parallelism, this means that the linker might run before the compiler, but it will get paused until the compiler is done generating the input that it needs. Another purpose of crumb is to provide users with absolutely minimal build description files. This means that the build description files need to be smaller than an equivalent shell script containing the commands that would have built the project directly.

No download Website Updated 06 Aug 2011 R.Launchpad

Screenshot
Pop 20.59
Vit 25.60

R.Launchpad is a minimal distribution of Linux that builds a system-image from sources into a given disk partition. It covers all the commands needed to boot the most recent version of Linux-2.6.

Download Website Updated 11 Mar 2013 SBuild

Screenshot
Pop 74.89
Vit 6.82

SBuild is a Scala-based build system. It features platform independence, multi project support, automatic detection of needed actions, automatic up-to-date detection, a flexible scheme handler mechanism, Maven repository support, Ant task integration, automatic cross-project resolving of dependencies, high speed, a simple "syntax" that requires almost no Scala knowledge, behind-the-sceens compilation of build script to bytecode for fast execution time, and built-in scheme handlers for HTTP and Maven.

Download Website Updated 29 Apr 2013 SBuild Eclipse Plugin

Screenshot
Pop 40.44
Vit 6.15

SBuild Eclipse Plugin integrates SBuild into the Eclipse IDE. It provides an SBuild classpath container which can resolve project dependencies (build path) via SBuild. Additionally, dependencies can be resolved alternatively from a workspace through an alias configuration.

Download Website Updated 18 May 2013 Meson

Screenshot
Pop 65.29
Vit 10.65

Meson is a research experiment to determine optimal syntax and structure for a next-generation build system.

Screenshot

Project Spotlight

Chucho

A C++11 logging framework.

Screenshot

Project Spotlight

My Session

A class that stores session data in a database rather than files.