# HG changeset patch # User Daniel Adler # Date 1437596168 -7200 # Node ID 82c39a220e51283f454dd318acf9b32383feecee # Parent 35ca16453c1260a1c1eed43b4a7f2d953136ed59 minor fix for armv7 out-of-source builds diff -r 35ca16453c12 -r 82c39a220e51 dyncallback/dyncall_callback_arm32_thumb_apple.s --- a/dyncallback/dyncall_callback_arm32_thumb_apple.s Tue Jul 21 17:24:59 2015 +0200 +++ b/dyncallback/dyncall_callback_arm32_thumb_apple.s Wed Jul 22 22:16:08 2015 +0200 @@ -28,5 +28,5 @@ /* into ARM mode, the parameters passed use the same registers/stack spase */ /* as the ARM mode, and the bx instruction switches back to THUMB mode, if */ /* the function to be called has a "THUMB function address" (=address+1). */ -.include "dyncall_callback_arm32_arm_apple.s" +#include "dyncall_callback_arm32_arm_apple.s" diff -r 35ca16453c12 -r 82c39a220e51 dyncallback/dyncall_callback_arm32_thumb_gas.s --- a/dyncallback/dyncall_callback_arm32_thumb_gas.s Tue Jul 21 17:24:59 2015 +0200 +++ b/dyncallback/dyncall_callback_arm32_thumb_gas.s Wed Jul 22 22:16:08 2015 +0200 @@ -28,5 +28,5 @@ /* into ARM mode, the parameters passed use the same registers/stack space */ /* as the ARM mode, and the bx instruction switches back to THUMB mode, if */ /* the function to be called has a "THUMB function address" (=address+1). */ -.include "dyncall_callback_arm32_arm_gas.s" +#include "dyncall_callback_arm32_arm_gas.s"