|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r77253 - trunk/libs/context/build
From: oliver.kowalke_at_[hidden]
Date: 2012-03-06 17:39:57
Author: olli
Date: 2012-03-06 17:39:56 EST (Tue, 06 Mar 2012)
New Revision: 77253
URL: http://svn.boost.org/trac/boost/changeset/77253
Log:
context: separate compilation of asm only for Windows
Text files modified:
trunk/libs/context/build/Jamfile.v2 | 26 ++++++++++----------------
1 files changed, 10 insertions(+), 16 deletions(-)
Modified: trunk/libs/context/build/Jamfile.v2
==============================================================================
--- trunk/libs/context/build/Jamfile.v2 (original)
+++ trunk/libs/context/build/Jamfile.v2 2012-03-06 17:39:56 EST (Tue, 06 Mar 2012)
@@ -60,12 +60,6 @@
feature.set-default abi : [ default_abi ] ;
-
-actions gas
-{
- as -o "$(<)" "$(>)"
-}
-
actions masm
{
ml /c /Fo"$(<)" "$(>)"
@@ -78,42 +72,42 @@
alias asm_context_sources
- : [ make asm/fcontext_arm_aapcs_elf_gas.o : asm/fcontext_arm_aapcs_elf_gas.S : @gas ]
+ : asm/fcontext_arm_aapcs_elf_gas.S
: <abi>aapcs
<architecture>arm
<binary-format>elf
;
alias asm_context_sources
- : [ make asm/fcontext_mips32_o32_elf_gas.o : asm/fcontext_mips32_o32_elf_gas.S : @gas ]
+ : asm/fcontext_mips32_o32_elf_gas.S
: <abi>o32
<architecture>mips1
<binary-format>elf
;
#alias asm_context_sources
-# : [ make asm/fcontext_mips64_n32_elf_gas.o : asm/fcontext_mips64_n32_elf_gas.S : @gas ]
+# : asm/fcontext_mips64_n32_elf_gas.S
# : <abi>n32
# <architecture>mips1
# <binary-format>elf
# ;
#
#alias asm_context_sources
-# : [ make asm/fcontext_mips64_n64_elf_gas.o : asm/fcontext_mips64_n64_elf_gas.S : @gas ]
+# : asm/fcontext_mips64_n64_elf_gas.S
# : <abi>n64
# <architecture>mips1
# <binary-format>elf
# ;
#
#alias asm_context_sources
-# : [ make asm/fcontext_mips64_o64_elf_gas.o : asm/fcontext_mips64_o64_elf_gas.S : @gas ]
+# : asm/fcontext_mips64_o64_elf_gas.S
# : <abi>o64
# <architecture>mips1
# <binary-format>elf
# ;
alias asm_context_sources
- : [ make asm/fcontext_ppc32_sysv_elf_gas.o : asm/fcontext_ppc32_sysv_elf_gas.S : @gas ]
+ : asm/fcontext_ppc32_sysv_elf_gas.S
: <abi>sysv
<address-model>32
<architecture>power
@@ -121,7 +115,7 @@
;
alias asm_context_sources
- : [ make asm/fcontext_ppc64_sysv_elf_gas.o : asm/fcontext_ppc64_sysv_elf_gas.S : @gas ]
+ : asm/fcontext_ppc64_sysv_elf_gas.S
: <abi>sysv
<address-model>64
<architecture>power
@@ -129,7 +123,7 @@
;
alias asm_context_sources
- : [ make asm/fcontext_i386_sysv_elf_gas.o : asm/fcontext_i386_sysv_elf_gas.S : @gas ]
+ : asm/fcontext_i386_sysv_elf_gas.S
: <abi>sysv
<address-model>32
<architecture>x86
@@ -137,7 +131,7 @@
;
alias asm_context_sources
- : [ make asm/fcontext_x86_64_sysv_elf_gas.o : asm/fcontext_x86_64_sysv_elf_gas.S : @gas ]
+ : asm/fcontext_x86_64_sysv_elf_gas.S
: <abi>sysv
<address-model>64
<architecture>x86
@@ -145,7 +139,7 @@
;
alias asm_context_sources
- : [ make asm/fcontext_x86_64_sysv_macho_gas.o : asm/fcontext_x86_64_sysv_macho_gas.S : @gas ]
+ : asm/fcontext_x86_64_sysv_macho_gas.S
: <abi>sysv
<address-model>64
<architecture>x86
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk