qt5-webkit: fix mips*
This commit is contained in:
parent
c96a7e345a
commit
bbb533a686
2 changed files with 18 additions and 2 deletions
16
srcpkgs/qt5-webkit/patches/mips-isa-rev.patch
Normal file
16
srcpkgs/qt5-webkit/patches/mips-isa-rev.patch
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
--- Source/WTF/wtf/Platform.h 2020-04-14 00:51:51.000000000 +0200
|
||||||
|
+++ Source/WTF/wtf/Platform.h 2020-08-02 15:08:02.169747050 +0200
|
||||||
|
@@ -95,7 +95,12 @@
|
||||||
|
#define WTF_MIPS_PIC (defined __PIC__)
|
||||||
|
#define WTF_MIPS_ISA(v) (defined WTF_MIPS_ARCH && WTF_MIPS_ARCH == v)
|
||||||
|
#define WTF_MIPS_ISA_AT_LEAST(v) (defined WTF_MIPS_ARCH && WTF_MIPS_ARCH >= v)
|
||||||
|
-#define WTF_MIPS_ARCH_REV __mips_isa_rev
|
||||||
|
+#ifdef __mips_isa_rev
|
||||||
|
+#define WTF_MIPS_ARCH_REV __mips_isa_rev
|
||||||
|
+#else
|
||||||
|
+/* The compiler hasn't defined the isa rev so assume it's MIPS I - V (0) */
|
||||||
|
+#define WTF_MIPS_ARCH_REV 0
|
||||||
|
+#endif
|
||||||
|
#define WTF_MIPS_ISA_REV(v) (defined WTF_MIPS_ARCH_REV && WTF_MIPS_ARCH_REV == v)
|
||||||
|
#define WTF_MIPS_DOUBLE_FLOAT (defined __mips_hard_float && !defined __mips_single_float)
|
||||||
|
#define WTF_MIPS_FP64 (defined __mips_fpr && __mips_fpr == 64)
|
|
@ -36,7 +36,7 @@ fi
|
||||||
|
|
||||||
# only a few platform support JIT
|
# only a few platform support JIT
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
case "$XBPS_TARGET_MACHINE" in
|
||||||
armv[67]*|aarch64*|i686*|x86_64*|mips*) ;;
|
armv[67]*|aarch64*|i686*|x86_64*) ;;
|
||||||
*) configure_args+=" -DENABLE_JIT=OFF" ;;
|
*) configure_args+=" -DENABLE_JIT=OFF" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ pre_configure() {
|
||||||
# the above is not enough for 32-bit ppc and debug
|
# the above is not enough for 32-bit ppc and debug
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
case "$XBPS_TARGET_MACHINE" in
|
||||||
ppc64*) ;;
|
ppc64*) ;;
|
||||||
ppc*)
|
mips*|ppc*)
|
||||||
export CFLAGS="${CFLAGS/-O2/-Os}"
|
export CFLAGS="${CFLAGS/-O2/-Os}"
|
||||||
export CXXFLAGS="${CXXFLAGS/-O2/-Os}"
|
export CXXFLAGS="${CXXFLAGS/-O2/-Os}"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue