search for: _klibc_arm_use_bx

Displaying 4 results from an estimated 4 matches for "_klibc_arm_use_bx".

2011 May 17
2
[PATCH] arm: use bx on thumb2 v3
....h @@ -9,6 +9,10 @@ #ifndef _KLIBC_ARCHCONFIG_H #define _KLIBC_ARCHCONFIG_H -/* All defaults */ +/* newer arm arch support bx instruction */ +#if (!defined(__ARM_ARCH_2__) && !defined(__ARM_ARCH_3__) \ + && !defined(__ARM_ARCH_3M__) && !defined(__ARM_ARCH_4__)) +# define _KLIBC_ARM_USE_BX 1 +#endif #endif /* _KLIBC_ARCHCONFIG_H */ diff --git a/usr/include/arch/arm/klibc/asmmacros.h b/usr/include/arch/arm/klibc/asmmacros.h index 8a21c94..45bea0e 100644 --- a/usr/include/arch/arm/klibc/asmmacros.h +++ b/usr/include/arch/arm/klibc/asmmacros.h @@ -27,4 +27,10 @@ (((x) & ~0x...
2014 Apr 09
0
[klibc:master] Move architecture-specific initialization to arch/
...__libc_arch_init() */ +#define _KLIBC_HAS_ARCHINIT 1 + #endif /* _KLIBC_ARCHCONFIG_H */ diff --git a/usr/include/klibc/sysconfig.h b/usr/include/klibc/sysconfig.h index 5fa9b60..ab947c0 100644 --- a/usr/include/klibc/sysconfig.h +++ b/usr/include/klibc/sysconfig.h @@ -216,4 +216,13 @@ # define _KLIBC_ARM_USE_BX 0 #endif +/* + * _KLIBC_HAS_ARCHINIT + * + * This architecture uses __libc_archinit() + */ +#ifndef _KLIBC_HAS_ARCHINIT +# define _KLIBC_HAS_ARCHINIT 0 +#endif + #endif /* _KLIBC_SYSCONFIG_H */ diff --git a/usr/klibc/arch/i386/Kbuild b/usr/klibc/arch/i386/Kbuild index edc7b3c..1642374 100644 --...
2012 May 15
5
[PATCH 0/5] resubmitting pending patches
Hi, I?ve gone through the mailing list archives and hereby want to resubmit my pending patches. Most are independent of each other, except the m68k patch which will only be complete if sigsuspend is also fixed. (It can be applied before that, though.) http://www.zytor.com/pipermail/klibc/2012-January/003173.html [PATCH] fix m68k support Resubmitted here as 0005. While there was a question from
2012 May 05
3
[PATCH] fix non-RT sigsuspend()
..._SIGSUSPEND_L_1 + #endif /* _KLIBC_ARCHCONFIG_H */ diff --git a/usr/include/arch/arm/klibc/archconfig.h b/usr/include/arch/arm/klibc/archconfig.h index 36e9ab5..e18145b 100644 --- a/usr/include/arch/arm/klibc/archconfig.h +++ b/usr/include/arch/arm/klibc/archconfig.h @@ -15,4 +15,6 @@ # define _KLIBC_ARM_USE_BX 1 #endif +#define _KLIBC_SIGSUSPEND_I_IUL1 + #endif /* _KLIBC_ARCHCONFIG_H */ diff --git a/usr/include/arch/cris/klibc/archconfig.h b/usr/include/arch/cris/klibc/archconfig.h index 0206078..176de6c 100644 --- a/usr/include/arch/cris/klibc/archconfig.h +++ b/usr/include/arch/cris/klibc/archco...