diff -ruN libs/context/build/Jamfile.v2 libs/context/build/Jamfile.v2
|
|
|
379 | 379 | ; |
380 | 380 | |
381 | 381 | alias asm_context_sources |
| 382 | : asm/make_i386_x86_64_sysv_macho_gas.S |
| 383 | asm/jump_i386_x86_64_sysv_macho_gas.S |
| 384 | : <address-model>32_64 |
| 385 | <architecture>x86 |
| 386 | <binary-format>mach-o |
| 387 | <target-os>darwin |
| 388 | <toolset>darwin |
| 389 | ; |
| 390 | |
| 391 | alias asm_context_sources |
382 | 392 | : asm/make_x86_64_ms_pe_masm.asm |
383 | 393 | asm/jump_x86_64_ms_pe_masm.asm |
384 | 394 | dummy.cpp |
diff -ruN libs/context/src/asm/jump_i386_x86_64_sysv_macho_gas.S libs/context/src/asm/jump_i386_x86_64_sysv_macho_gas.S
|
|
|
| 1 | /* |
| 2 | Copyright Sergue E. Leontiev <lse@cryptopro.ru> 2013 :) |
| 3 | Distributed under the Boost Software License, Version 1.0. |
| 4 | (See accompanying file LICENSE_1_0.txt or copy at |
| 5 | http://www.boost.org/LICENSE_1_0.txt) |
| 6 | */ |
| 7 | /* |
| 8 | * Stub file for universal binary |
| 9 | */ |
| 10 | |
| 11 | #if defined(__i386__) |
| 12 | #include "jump_i386_sysv_macho_gas.S" |
| 13 | #elif defined(__x86_64__) |
| 14 | #include "jump_x86_64_sysv_macho_gas.S" |
| 15 | #else |
| 16 | #error "No arch's" |
| 17 | #endif |
diff -ruN libs/context/src/asm/make_i386_x86_64_sysv_macho_gas.S libs/context/src/asm/make_i386_x86_64_sysv_macho_gas.S
|
|
|
| 1 | /* |
| 2 | Copyright Sergue E. Leontiev <lse@cryptopro.ru> 2013 :) |
| 3 | Distributed under the Boost Software License, Version 1.0. |
| 4 | (See accompanying file LICENSE_1_0.txt or copy at |
| 5 | http://www.boost.org/LICENSE_1_0.txt) |
| 6 | */ |
| 7 | /* |
| 8 | * Stub file for universal binary |
| 9 | */ |
| 10 | |
| 11 | #if defined(__i386__) |
| 12 | #include "make_i386_sysv_macho_gas.S" |
| 13 | #elif defined(__x86_64__) |
| 14 | #include "make_x86_64_sysv_macho_gas.S" |
| 15 | #else |
| 16 | #error "No arch's" |
| 17 | #endif |