pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/meta-pkgs/boost



Module Name:    pkgsrc
Committed By:   bouyer
Date:           Sat Sep  2 10:42:12 UTC 2017

Modified Files:
        pkgsrc/meta-pkgs/boost: distinfo
Added Files:
        pkgsrc/meta-pkgs/boost/patches:
            patch-libs_context_src_asm_jump_arm_aapcs_elf_gas.S
            patch-libs_context_src_asm_ontop_arm_aapcs_elf_gas.S

Log Message:
If we have a VFP, assume it is VFP3. In the default mode on NetBSD, the
assembler complains:
libs/context/src/asm/ontop_arm_aapcs_elf_gas.S:55: Error: selected processor does not support `vstmia sp,{d8-d15}' in ARM mode
libs/context/src/asm/ontop_arm_aapcs_elf_gas.S:69: Error: selected processor does not support `vldmia sp,{d8-d15}' in ARM mode

XXX what about VFP4 ?

Should fix PR pkg/52425.

No PKGREVISION change, as this doesn't change packages which did sucessfully
build before.


To generate a diff of this commit:
cvs rdiff -u -r1.104 -r1.105 pkgsrc/meta-pkgs/boost/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/meta-pkgs/boost/patches/patch-libs_context_src_asm_jump_arm_aapcs_elf_gas.S \
    pkgsrc/meta-pkgs/boost/patches/patch-libs_context_src_asm_ontop_arm_aapcs_elf_gas.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/meta-pkgs/boost/distinfo
diff -u pkgsrc/meta-pkgs/boost/distinfo:1.104 pkgsrc/meta-pkgs/boost/distinfo:1.105
--- pkgsrc/meta-pkgs/boost/distinfo:1.104       Fri Aug 25 21:49:43 2017
+++ pkgsrc/meta-pkgs/boost/distinfo     Sat Sep  2 10:42:12 2017
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.104 2017/08/25 21:49:43 prlw1 Exp $
+$NetBSD: distinfo,v 1.105 2017/09/02 10:42:12 bouyer Exp $
 
 SHA1 (boost_1_65_0.tar.bz2) = f9260074ecfb31f3e65322fae9c15cc423c0ad59
 RMD160 (boost_1_65_0.tar.bz2) = 375254511112fb52928138ec7ea43f290d62601e
@@ -23,6 +23,8 @@ SHA1 (patch-boost_test_impl_execution__m
 SHA1 (patch-boostcpp.jam) = 8914fe56f183649a394032513483e29d1c49e30c
 SHA1 (patch-libs_config_configure) = e2f204d4fa4f1bd9b4131d28f9be0a1ac22bf711
 SHA1 (patch-libs_config_test_boost__no__range__based__for.ipp) = d9936c472fc2c696d86522b36eb12813ae91bee4
+SHA1 (patch-libs_context_src_asm_jump_arm_aapcs_elf_gas.S) = c5abf37bcf6fb88eb864a84199e6abdcfdc91bec
+SHA1 (patch-libs_context_src_asm_ontop_arm_aapcs_elf_gas.S) = 9f76ec808adc34a83e720c846804c959830fafb6
 SHA1 (patch-libs_fiber_build_Jamfile.v2) = 28c1aba2d074f2db7104e37cd900d33f5fcffb09
 SHA1 (patch-tools_build_src_engine_build.jam) = dc59422ade217aa49eb5d6928f02f7bc4734aa43
 SHA1 (patch-tools_build_src_engine_build.sh) = ed5e29d049f04e8a1e055844e66c549e5cd4bb01

Added files:

Index: pkgsrc/meta-pkgs/boost/patches/patch-libs_context_src_asm_jump_arm_aapcs_elf_gas.S
diff -u /dev/null pkgsrc/meta-pkgs/boost/patches/patch-libs_context_src_asm_jump_arm_aapcs_elf_gas.S:1.1
--- /dev/null   Sat Sep  2 10:42:12 2017
+++ pkgsrc/meta-pkgs/boost/patches/patch-libs_context_src_asm_jump_arm_aapcs_elf_gas.S  Sat Sep  2 10:42:12 2017
@@ -0,0 +1,14 @@
+$NetBSD: patch-libs_context_src_asm_jump_arm_aapcs_elf_gas.S,v 1.1 2017/09/02 10:42:12 bouyer Exp $
+
+--- libs/context/src/asm/jump_arm_aapcs_elf_gas.S.orig 2017-08-27 12:57:18.881402433 +0200
++++ libs/context/src/asm/jump_arm_aapcs_elf_gas.S      2017-08-27 12:58:09.211149398 +0200
+@@ -39,6 +39,9 @@
+  *******************************************************/
+ 
+ .text
++#if (defined(__VFP_FP__) && !defined(__SOFTFP__))
++.fpu vfpv3
++#endif
+ .globl jump_fcontext
+ .align 2
+ .type jump_fcontext,%function
Index: pkgsrc/meta-pkgs/boost/patches/patch-libs_context_src_asm_ontop_arm_aapcs_elf_gas.S
diff -u /dev/null pkgsrc/meta-pkgs/boost/patches/patch-libs_context_src_asm_ontop_arm_aapcs_elf_gas.S:1.1
--- /dev/null   Sat Sep  2 10:42:12 2017
+++ pkgsrc/meta-pkgs/boost/patches/patch-libs_context_src_asm_ontop_arm_aapcs_elf_gas.S Sat Sep  2 10:42:12 2017
@@ -0,0 +1,14 @@
+$NetBSD: patch-libs_context_src_asm_ontop_arm_aapcs_elf_gas.S,v 1.1 2017/09/02 10:42:12 bouyer Exp $
+
+--- libs/context/src/asm/ontop_arm_aapcs_elf_gas.S.orig        2017-08-27 12:57:18.888935619 +0200
++++ libs/context/src/asm/ontop_arm_aapcs_elf_gas.S     2017-08-27 12:58:25.812105545 +0200
+@@ -39,6 +39,9 @@
+  *******************************************************/
+ 
+ .text
++#if (defined(__VFP_FP__) && !defined(__SOFTFP__))
++.fpu vfpv3
++#endif
+ .globl ontop_fcontext
+ .align 2
+ .type ontop_fcontext,%function



Home | Main Index | Thread Index | Old Index