Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Add chrpath to build depends
· 9d6f1681
Shayan Doust
authored
Sep 16, 2019
9d6f1681
Patch source to fix temp array addressing issue. Add header.
· e9834b7a
Shayan Doust
authored
Sep 16, 2019
e9834b7a
Show whitespace changes
Inline
Side-by-side
debian/control
View file @
e9834b7a
...
...
@@ -10,7 +10,8 @@ Build-Depends: debhelper-compat (= 12),
libhdf5-dev,
libboost-dev,
python3-all,
dh-python
dh-python,
chrpath
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/med-team/simka
Vcs-Git: https://salsa.debian.org/med-team/simka.git
...
...
debian/patches/fix_temp_arrays.patch
View file @
e9834b7a
Description: separate out array as a defined struct
Some (newer) GCC throw error when accessing the address of a temporary array, so separate the array as a defined struct to prevent this address issue.
Last-Update: 2019-09-16
---
Index: simka/src/SimkaPotara.hpp
===================================================================
--- simka.orig/src/SimkaPotara.hpp 2019-09-16 1
4:57:11.000000000
+0100
+++ simka/src/SimkaPotara.hpp 2019-09-16 15:
10:46.652115586
+0100
--- simka.orig/src/SimkaPotara.hpp 2019-09-16 1
5:21:36.549855248
+0100
+++ simka/src/SimkaPotara.hpp 2019-09-16 15:
21:36.545855212
+0100
@@ -902,7 +902,8 @@
}
else{
...
...
@@ -14,8 +19,8 @@ Index: simka/src/SimkaPotara.hpp
if(i >= this->_bankNames.size()) break;
Index: simka/src/minikc/SimkaCountProcess.cpp
===================================================================
--- simka.orig/src/minikc/SimkaCountProcess.cpp 2019-09-1
3 09:30:25.536451003
+0100
+++ simka/src/minikc/SimkaCountProcess.cpp 2019-09-16 15:
1
1:3
1.26
45
0
5521 +0100
--- simka.orig/src/minikc/SimkaCountProcess.cpp 2019-09-1
6 15:21:36.549855248
+0100
+++ simka/src/minikc/SimkaCountProcess.cpp 2019-09-16 15:
2
1:3
6.5
45
8
5521
2
+0100
@@ -22,7 +22,8 @@
int nbTries = 0;
while(ret != 0){
...
...