clang 2.9-11ubuntu1 source package in Ubuntu

Changelog

clang (2.9-11ubuntu1) oneiric; urgency=low

  * Add support for Ubuntu natty and oneiric (LP: #792146, #852870).
 -- Colin Watson <email address hidden>   Sun, 18 Sep 2011 22:43:25 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Oneiric
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
devel
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
clang_2.9.orig.tar.gz 6.0 MiB 570a9f8dd270dc67aaa4f29feb2db396412b5b31fb34825cb6ac62f9cd13c513
clang_2.9-11ubuntu1.debian.tar.gz 21.8 KiB 59c8884fe4a79557d936e2e0299fc553f82fa43751ae8590acb1cb6d3435421f
clang_2.9-11ubuntu1.dsc 2.3 KiB 842ce636813a3e3ea8e442436c1bf1be51d5658d7cb0132092560ccd47346723

Available diffs

View changes file

Binary packages built by this source

clang: Low-Level Virtual Machine (LLVM), C language family frontend

 The Low-Level Virtual Machine (LLVM) is a collection of libraries and
 tools that make it easy to build compilers, optimizers, Just-In-Time
 code generators, and many other compiler-related programs. LLVM
 uses a single, language-independent virtual instruction set both
 as an offline code representation (to communicate code between
 compiler phases and to run-time systems) and as the compiler internal
 representation (to analyze and transform programs). This persistent
 code representation allows a common set of sophisticated compiler
 techniques to be applied at compile-time, link-time, install-time,
 run-time, or "idle-time" (between program runs).
 .
 Clang project is a C, C++, Objective C and Objective C++ front-end
 for the LLVM compiler. Some of its goals include the following:
 .
 End-User Features:
 .
    * Fast compiles and low memory use
    * Expressive diagnostics (examples)
    * GCC compatibility
 .
 Utility and Applications:
 .
    * Modular library based architecture
    * Support diverse clients (refactoring, static analysis, code
      generation, etc)
    * Allow tight integration with IDEs
    * Use the LLVM 'BSD' License
 .
 Internal Design and Implementation:
 .
    * A real-world, production quality compiler
    * A simple and hackable code base
    * A single unified parser for C, Objective C, C++, and Objective C++
    * Conformance with C/C++/ObjC and their variants