summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Heimpold <mhei@heimpold.de>2023-06-11 18:05:29 +0200
committerKhem Raj <raj.khem@gmail.com>2023-06-12 08:08:19 -0700
commit0eed75ff15f0cdd56dce8a570035e713386eb58a (patch)
treea8fde172f078a9a94a74462c315ef87baac537c1
parent812f091414b34dbebe4a3990c9039cbaadc4dd71 (diff)
downloadmeta-openembedded-0eed75ff15f0cdd56dce8a570035e713386eb58a.tar.gz
php: drop explicite ARM_INSTRUCTION_SET
If my git skills don't trick me, forcing ARM mode for PHP dates back to year 2015 with commit e836f8f93. I wondered whether the compile problem still persists and just tested that it compiles fine for qemuarm nowaydays. I also tested the binaries on a physical device, a NXP iMX6ULL based one, and did not notice any problems so far. Signed-off-by: Michael Heimpold <mhei@heimpold.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/php/php_8.2.6.bb9
1 files changed, 0 insertions, 9 deletions
diff --git a/meta-oe/recipes-devtools/php/php_8.2.6.bb b/meta-oe/recipes-devtools/php/php_8.2.6.bb
index dad9554523..404ff393b2 100644
--- a/meta-oe/recipes-devtools/php/php_8.2.6.bb
+++ b/meta-oe/recipes-devtools/php/php_8.2.6.bb
@@ -284,12 +284,3 @@ do_install:append:class-native() {
284 create_wrapper ${D}${bindir}/php \ 284 create_wrapper ${D}${bindir}/php \
285 PHP_PEAR_SYSCONF_DIR=${sysconfdir}/ 285 PHP_PEAR_SYSCONF_DIR=${sysconfdir}/
286} 286}
287
288# Fails to build with thumb-1 (qemuarm)
289# | {standard input}: Assembler messages:
290# | {standard input}:3719: Error: selected processor does not support Thumb mode `smull r0,r2,r9,r3'
291# | {standard input}:3720: Error: unshifted register required -- `sub r2,r2,r0,asr#31'
292# | {standard input}:3796: Error: selected processor does not support Thumb mode `smull r0,r2,r3,r3'
293# | {standard input}:3797: Error: unshifted register required -- `sub r2,r2,r0,asr#31'
294# | make: *** [ext/standard/math.lo] Error 1
295ARM_INSTRUCTION_SET = "arm"