Difference between revisions of "Autobuild"

From Second Life Wiki
Jump to navigation Jump to search
Line 32: Line 32:


|--
|--
| -v, --version
| --debug
| Show version information
| Display debug information


|--
|--
| --help [HELP]
| --dry-run
| Find all valid Autobuild tools and show help
| Run tool in dry run mode if available


|--
|--
| --dry-run
| --help [''command'']
| Run tool in dry run mode if available
| Find all valid Autobuild tools and show help


|--
|--
Line 52: Line 52:


|--
|--
| --debug
| -v, --version
| Display debug information
| Show version information


|}
|}
Line 64: Line 64:
|--
|--
| [[autobuild build|build]]
| [[autobuild build|build]]
| Builds platform targets.
| Build platform targets.
|--
|--
| [[autobuild configure|configure]]
| [[autobuild configure|configure]]
| Configures platform targets.
| Configure platform targets.
|--
|--
| [[autobuild edit|edit]]
| [[autobuild edit|edit]]
Line 82: Line 82:
|--
|--
| [[autobuild package|package]]
| [[autobuild package|package]]
| Creates an archive of build output.
| Create an archive of build output.
|--
|--
| [[autobuild print|print]]
| [[autobuild print|print]]
Line 88: Line 88:
|--
|--
| [[autobuild source_environment|source_environment]]
| [[autobuild source_environment|source_environment]]
| Prints out the shell environment Autobuild-based buildscripts to use (by calling 'eval').
| Print the shell environment Autobuild-based build scripts to use (by calling 'eval').
|--
|--
| [[autobuild uninstall|uninstall]]
| [[autobuild uninstall|uninstall]]
Line 94: Line 94:
|--
|--
| [[autobuild upload|upload]]
| [[autobuild upload|upload]]
| upload tool for autobuild  
| Upload tool for autobuild  
|}
|}



Revision as of 10:00, 9 March 2011


Overview

Autobuild is a framework for maintaining and building libraries. It acts as director providing a common interface to build and package libraries, but it is not a build system like make or cmake. You will still need platform-specific make, cmake, or project files to configure and build your library. Autobuild will, however, allow you invoke these commands and package the product with a common interface. For Linden old hands: Autobuild is designed as a replacement for the old lindenlib policies, doing the right thing so you don't have to.

KBcaution.png Important: Linden Lab Autobuild is not the same as or derived from GNU Autobuild, but they are similar enough to cause confusion.

Getting Autobuild

Autobuild is available as a Mercurial repository:

https://bitbucket.org/lindenlab/autobuild  

Installing Autobuild

You can either run the autobuild command directly from the "bin" directory in a working copy of that repository, or install it as a normal python package by running

python setup.py install

from the top level directory of the working copy. You may need administrative privilege on your system to install into system command directories.

KBnote.png Note: Windows users with a "native" Python install, should add the Autobuild "bin" directory to their PATH and avoid the Cygwin shell like the plague ;-)
KBnote.png Note: If you are using Cygwin on Windows, use python setup.py install rather than running Autobuild directly from the checkout. This ensures that Cygwin paths are translated to native Windows paths. You must also add your Python scripts directory (for example C:/Program Files/python26/Scripts) to your PATH.

Running Autobuild

Usage:

autobuild [-v] [--help [HELP]] [--dry-run] [--quiet] [--verbose] [--debug] sub-command

Options:

Option Description
--debug Display debug information
--dry-run Run tool in dry run mode if available
--help [command] Find all valid Autobuild tools and show help
--quiet Display minimal output
--verbose Display verbose output
-v, --version Show version information

Sub-commands

Sub-command Description
build Build platform targets.
configure Configure platform targets.
edit Manage build and package configuration.
install Fetch and install package archives.
installables Manipulate installable package entries in the autobuild configuration.
manifest Manipulate manifest entries to the autobuild configuration.
package Create an archive of build output.
print Print configuration.
source_environment Print the shell environment Autobuild-based build scripts to use (by calling 'eval').
uninstall Uninstall package archives.
upload Upload tool for autobuild

Background and Tutorials

Autobuild How To
A tutorial introduction to using autobuild
Autobuild Lexicon
A list of terms and how they are used in the context of autobuild
Autobuild Package Layout
Describes the standard directory tree for packages managed with autobuild
Autobuild Quick Start
A basic walkthrough of how to add autobuild management to an existing software project
Autobuild Class Model
Describes the fundamental objects in the autobuild design and the relationships between them.
Autobuild Examples
Links to packages built with autobuild.
Build Script Anatomy
An annotated build script typical of those used to build third party libraries.
Autobuild Shell Functions
A description of all shell functions provided by Autobuild for use in build scripts.

Contributing to Autobuild

Autobuild is open source. Improvements are most welcome.