diff options
author | konablend <[email protected]> | 2009-03-10 01:26:46 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-03-10 01:26:46 +0000 |
commit | 9524d15d80e03017ea0dcafd158562a304ee357a (patch) | |
tree | 9ee8cc3553fc1856eba171d16e6bd9d39d79ba46 /doc/texi | |
parent | 82a445c939dd4d63ee957190dce2de8d594a7782 (diff) |
BuildSystem: effects Darwin platforms only
- fixed Darwin ppc hosted build reversion introduced in r2242.
- fixed Darwin + Xcode in all scenerios to honor --debug option
*** if building from Xcode there is no need to rebuild but you will have
to close project and reload; xcodeproj has been updated.
*** if building from terminal there *should* be no need to rebuild;
the first 'make' after an update is expected to trigger a reconfigure
and libhb will rebuild.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2248 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'doc/texi')
-rw-r--r-- | doc/texi/Building.osx.texi | 3 | ||||
-rw-r--r-- | doc/texi/building/appendix.repo.texi | 10 | ||||
-rw-r--r-- | doc/texi/building/chapter.via.terminal.texi | 2 | ||||
-rw-r--r-- | doc/texi/building/chapter.via.xcode.texi | 34 |
4 files changed, 38 insertions, 11 deletions
diff --git a/doc/texi/Building.osx.texi b/doc/texi/Building.osx.texi index a02ec6131..768488152 100644 --- a/doc/texi/Building.osx.texi +++ b/doc/texi/Building.osx.texi @@ -8,7 +8,7 @@ @set BG.platform osx @c %**end of header -@majorheading Guide to Building @value{HB.title} on @value{OS.@value{BG.platform}} +@majorheading Build Guide for @value{HB.name} @value{HB.version} on @value{OS.@value{BG.platform}} @contents @include building/chapter.introduction.texi @@ -67,3 +67,4 @@ UB.archs = i386 x86_64 @c %**------------------------------------------------------------------------- @include building/chapter.via.xcode.texi +@include building/appendix.repo.texi diff --git a/doc/texi/building/appendix.repo.texi b/doc/texi/building/appendix.repo.texi new file mode 100644 index 000000000..8d4ee0cc2 --- /dev/null +++ b/doc/texi/building/appendix.repo.texi @@ -0,0 +1,10 @@ +@appendix Project Repository Details +@example +url: @value{HB.repo.url} +root: @value{HB.repo.root} +branch: @value{HB.repo.branch} +uuid: @value{HB.repo.uuid} +rev: @value{HB.repo.rev} +date: @value{HB.repo.date} +type: @value{HB.repo.type} +@end example diff --git a/doc/texi/building/chapter.via.terminal.texi b/doc/texi/building/chapter.via.terminal.texi index 56afb8168..dce40f40f 100644 --- a/doc/texi/building/chapter.via.terminal.texi +++ b/doc/texi/building/chapter.via.terminal.texi @@ -219,7 +219,7 @@ If the need arises to override settings in the build system (essentially gnu-mak Custom makevar definitions @i{outside} @file{build}. Suitable for settings which apply across all builds for a particular checkout; or which survives manual removal of @file{build}. @item _SRC_/custom.rules -Custom make rules @i{outside} @file{build}. Suitable for settings which apply across all builds for a particular checkout; or which survives manual removal of @file{build}. +Custom make rules @i{outside} @file{build}. Suitable for rules which apply across all builds for a particular checkout; or which survives manual removal of @file{build}. @item _BUILD_/GNUmakefile.custom.defs Custom makevar definitions specific to a @file{build} directory. diff --git a/doc/texi/building/chapter.via.xcode.texi b/doc/texi/building/chapter.via.xcode.texi index a78e0808d..7a2aab9ed 100644 --- a/doc/texi/building/chapter.via.xcode.texi +++ b/doc/texi/building/chapter.via.xcode.texi @@ -28,24 +28,40 @@ Each configuration uses a different @file{build} directory. This makes it possib @table @samp @item standard -This configuration will build to the host native architecture. Build directory is @file{build.standard} . +This configuration will build @b{host native} architecture. Build directory is @file{build.standard} . The standard variant produces optimized code without debug information. -@item debug -This configuration will build to the host native architecture. Build directory is @file{build.standard} . -The debug variant produces unoptimized code with debug information. - @item standard.i386 -This configuration is used to build for the i386 architecture. Build directory is @file{build.standard.i386} . +This configuration will build @b{i386} architecture. Build directory is @file{build.standard.i386} . @item standard.x86_64 -This configuration is used to build for the x86_64 architecture. Build directory is @file{build.standard.x86_64} . +This configuration will build @b{x86_64} architecture. Build directory is @file{build.standard.x86_64} . @item standard.ppc -This configuration is used to build for the ppc architecture. Build directory is @file{build.standard.ppc} . +This configuration will build @b{ppc} architecture. Build directory is @file{build.standard.ppc} . @item standard.ppc64 -This configuration is used to build for the ppc64 architecture. Build directory is @file{build.standard.ppc64} . +This configuration will build @b{ppc64} architecture. Build directory is @file{build.standard.ppc64} . + +@item debug +This configuration will build @b{host native architecture}. Build directory is @file{build.debug} . +The debug variant produces unoptimized code with debug information. + +@item debug.i386 +This configuration will build @b{i386} architecture. Build directory is @file{build.debug.i386} . +The debug variant produces unoptimized code with debug information. + +@item debug.x86_64 +This configuration will build @b{x86_64} architecture. Build directory is @file{build.debug.x86_64} . +The debug variant produces unoptimized code with debug information. + +@item debug.ppc +This configuration will build @b{ppc} architecture. Build directory is @file{build.debug.ppc} . +The debug variant produces unoptimized code with debug information. + +@item debug.ppc64 +This configuration will build @b{ppc64} architecture. Build directory is @file{build.debug.ppc64} . +The debug variant produces unoptimized code with debug information. @end table @c %**------------------------------------------------------------------------- |