$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r77580 - trunk/libs/context/build
From: oliver.kowalke_at_[hidden]
Date: 2012-03-27 02:17:35
Author: olli
Date: 2012-03-27 02:17:35 EDT (Tue, 27 Mar 2012)
New Revision: 77580
URL: http://svn.boost.org/trac/boost/changeset/77580
Log:
context: reformating Jamfile
Text files modified: 
   trunk/libs/context/build/Jamfile.v2 |   109 ++++++++++++++++++++------------------- 
   1 files changed, 57 insertions(+), 52 deletions(-)
Modified: trunk/libs/context/build/Jamfile.v2
==============================================================================
--- trunk/libs/context/build/Jamfile.v2	(original)
+++ trunk/libs/context/build/Jamfile.v2	2012-03-27 02:17:35 EDT (Tue, 27 Mar 2012)
@@ -91,7 +91,7 @@
         return $(result) ;
 }
 
-
+# ARM
 alias asm_context_sources
    : asm/fcontext_arm_aapcs_elf_gas.S
    : <abi>aapcs
@@ -107,6 +107,7 @@
      <binary-format>elf
    ;
 
+# MIPS 32bit
 alias asm_context_sources
    : asm/fcontext_mips32_o32_elf_gas.S
    : <abi>o32
@@ -122,6 +123,7 @@
      <binary-format>elf
    ;
 
+# POWERPC 32bit
 alias asm_context_sources
    : asm/fcontext_ppc32_sysv_elf_gas.S
    : <abi>sysv
@@ -139,6 +141,7 @@
      <binary-format>elf
    ;
 
+# POWERPC 64bit
 alias asm_context_sources
    : asm/fcontext_ppc64_sysv_elf_gas.S
    : <abi>sysv
@@ -156,6 +159,7 @@
      <binary-format>elf
    ;
 
+# I386
 alias asm_context_sources
    : asm/fcontext_i386_sysv_elf_gas.S
    : <abi>sysv
@@ -183,119 +187,120 @@
    ;
 
 alias asm_context_sources
-   : asm/fcontext_x86_64_sysv_elf_gas.S
+   : asm/fcontext_i386_sysv_macho_gas.S
    : <abi>sysv
-     <address-model>64
+     <address-model>32
      <architecture>x86
-     <binary-format>elf
+     <binary-format>mach-o
+     <target-os>darwin
          <toolset>gcc
    ;
 
 alias asm_context_sources
-   : asm/fcontext_x86_64_sysv_elf_gas.S
+   : asm/fcontext_i386_sysv_macho_gas.S
    : <abi>sysv
-     <address-model>64
+     <address-model>32
      <architecture>x86
-     <binary-format>elf
+     <binary-format>mach-o
+     <target-os>darwin
          <toolset>intel
    ;
 
 alias asm_context_sources
-   : [ make asm/fcontext_x86_64_sysv_elf_gas.o : asm/fcontext_x86_64_sysv_elf_gas.S : @gas ]
+   : [ make asm/fcontext_i386_sysv_macho_gas.o : asm/fcontext_i386_sysv_macho_gas.S : @gas ]
    : <abi>sysv
-     <address-model>64
+     <address-model>32
      <architecture>x86
-     <binary-format>elf
+     <binary-format>mach-o
+     <target-os>darwin
    ;
 
-
 alias asm_context_sources
-   : asm/fcontext_i386_sysv_macho_gas.S
-   : <abi>sysv
+   : asm/fcontext_i386_ms_pe_masm.asm
+   : <abi>ms
      <address-model>32
      <architecture>x86
-     <binary-format>mach-o
-     <target-os>darwin
-	 <toolset>gcc
+     <binary-format>pe
+     <target-os>windows
+	 <toolset>intel
    ;
 
 alias asm_context_sources
-   : asm/fcontext_i386_sysv_macho_gas.S
-   : <abi>sysv
+   : asm/fcontext_i386_ms_pe_masm.asm
+   : <abi>ms
      <address-model>32
      <architecture>x86
-     <binary-format>mach-o
-     <target-os>darwin
-	 <toolset>intel
+     <binary-format>pe
+     <target-os>windows
+	 <toolset>msvc
    ;
 
 alias asm_context_sources
-   : [ make asm/fcontext_i386_sysv_macho_gas.o : asm/fcontext_i386_sysv_macho_gas.S : @gas ]
-   : <abi>sysv
+   : [ make asm/fcontext_i386_ms_pe_masm.o : asm/fcontext_i386_ms_pe_masm.asm : @masm ]
+   : <abi>ms
      <address-model>32
      <architecture>x86
-     <binary-format>mach-o
-     <target-os>darwin
+     <binary-format>pe
+     <target-os>windows
+	 <toolset>gcc
    ;
 
+
+# X86_64
 alias asm_context_sources
-   : asm/fcontext_x86_64_sysv_macho_gas.S
+   : asm/fcontext_x86_64_sysv_elf_gas.S
    : <abi>sysv
      <address-model>64
      <architecture>x86
-     <binary-format>mach-o
-     <target-os>darwin
+     <binary-format>elf
          <toolset>gcc
    ;
 
 alias asm_context_sources
-   : asm/fcontext_x86_64_sysv_macho_gas.S
+   : asm/fcontext_x86_64_sysv_elf_gas.S
    : <abi>sysv
      <address-model>64
      <architecture>x86
-     <binary-format>mach-o
-     <target-os>darwin
+     <binary-format>elf
          <toolset>intel
    ;
 
 alias asm_context_sources
-   : [ make asm/fcontext_x86_64_sysv_macho_gas.o : asm/fcontext_x86_64_sysv_macho_gas.S : @gas ]
+   : [ make asm/fcontext_x86_64_sysv_elf_gas.o : asm/fcontext_x86_64_sysv_elf_gas.S : @gas ]
    : <abi>sysv
      <address-model>64
      <architecture>x86
-     <binary-format>mach-o
-     <target-os>darwin
+     <binary-format>elf
    ;
 
 
 alias asm_context_sources
-   : asm/fcontext_i386_ms_pe_masm.asm
-   : <abi>ms
-     <address-model>32
+   : asm/fcontext_x86_64_sysv_macho_gas.S
+   : <abi>sysv
+     <address-model>64
      <architecture>x86
-     <binary-format>pe
-     <target-os>windows
-	 <toolset>intel
+     <binary-format>mach-o
+     <target-os>darwin
+	 <toolset>gcc
    ;
 
 alias asm_context_sources
-   : asm/fcontext_i386_ms_pe_masm.asm
-   : <abi>ms
-     <address-model>32
+   : asm/fcontext_x86_64_sysv_macho_gas.S
+   : <abi>sysv
+     <address-model>64
      <architecture>x86
-     <binary-format>pe
-     <target-os>windows
-	 <toolset>msvc
+     <binary-format>mach-o
+     <target-os>darwin
+	 <toolset>intel
    ;
 
 alias asm_context_sources
-   : [ make asm/fcontext_i386_ms_pe_masm.o : asm/fcontext_i386_ms_pe_masm.asm : @masm ]
-   : <abi>ms
-     <address-model>32
+   : [ make asm/fcontext_x86_64_sysv_macho_gas.o : asm/fcontext_x86_64_sysv_macho_gas.S : @gas ]
+   : <abi>sysv
+     <address-model>64
      <architecture>x86
-     <binary-format>pe
-     <target-os>windows
-	 <toolset>gcc
+     <binary-format>mach-o
+     <target-os>darwin
    ;
 
 alias asm_context_sources