From: Chris Lattner Date: Sat, 10 Oct 2009 22:13:38 +0000 (+0000) Subject: final changes. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f0390dfbc4748448700c6eaf533aef5a2993753e;p=oota-llvm.git final changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83737 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes-2.6.html b/docs/ReleaseNotes-2.6.html index ce290d3592a..c2c6c1eba34 100644 --- a/docs/ReleaseNotes-2.6.html +++ b/docs/ReleaseNotes-2.6.html @@ -854,31 +854,32 @@ on LLVM 2.5, this section lists some "gotchas" that you may run into upgrading from the previous release.

- LLVM build now builds all libraries as .a files instead of some +
  • All LLVM tools now default to overwriting their output file, behaving more + like standard unix tools. Previously, this only happened with the '-f' + option.
  • +
  • LLVM build now builds all libraries as .a files instead of some libraries as relinked .o files. This requires some APIs like - InitializeAllTargets.h. TargetRegistry! - - + InitializeAllTargets.h. +
  • +

    In addition, many APIs have changed in this release. Some of the major LLVM API changes are:

    - - API Cleanup: - no use of hash_set/hash_map, no more llvm::OStream - Use raw_ostream for everything, killed off llvm/Streams.h and DOUT -