Perforce Jam

From Wikipedia, the free encyclopedia

Perforce Jam is an open-source build system developed by Christopher Seiwald of Perforce Software. It can be used as a replacement for make. Its primary feature is its ability to express build patterns in an imperative language which supports structured namespaces (similar to Pascal records) and simple lists. Jam can be used with autoconf, although it is often not necessary because of Jam's portability features. Perforce Jam runs on Unix (including many clones), OpenVMS, Windows NT (including Windows 2000 and Windows XP), Mac OS, and BeOS. It can possibly be configured to work on Windows 9x using MinGW or Cygwin.

FT Jam is a popular variant and fully backward compatible, although its features are being integrated into Perforce Jam. Users of FT Jam often refer to Perforce Jam as "Classic Jam".

KJam is another variant of Jam. It is a complete re-implementation of the Jam language with a number of changes and enhancements to make the language both simpler and more powerful. It is more robust and more stable. It has a distributed network build mode where build steps can be spawned on a peer network of build servers.

[edit] Jambase

Jam comes with a set of rules called "Jambase", which define rules for building various things. Jambase is "smart" and knows, for instance, that if a header file is modified, all files that include it must be rebuilt. Unlike with makefiles, the writer of the Jamfile need not manage these dependencies, only list the source code files themselves. Jambase is usually compiled into the executable file itself.

Jambase is notorious among Jam users for its bugs and the infrequency with which fixes are integrated into the distribution, though few bugs are critical. There are some packages such as AutoJam designed to solve some of the problems of Jambase.

[edit] See also

  • Boost — includes a package called Boost.Build, which uses a special version of Jam called Boost.Jam
  • Perforce — the main product of Perforce Software, a commercial, proprietary revision control system.

[edit] External links

Languages