Codebase list balboa / 72fec1a
patch Makefile to include -latomic Sascha Steinbiss 4 years ago
3 changed file(s) with 43 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 balboa (2.0.0+ds-3) unstable; urgency=medium
1
2 * Patch Makefiles to add `-latomic'. Fixes FTBFS on mips and others.
3
4 -- Sascha Steinbiss <satta@debian.org> Tue, 23 Jul 2019 16:57:06 +0200
5
06 balboa (2.0.0+ds-2) unstable; urgency=medium
17
28 * Fix build on MIPS systems.
0 Description: add -latomic
1 Author: Sascha Steinbiss <satta@debian.org>
2 Last-Update: 2019-07-23
3 --- a/backend/balboa-backend-console/Makefile
4 +++ b/backend/balboa-backend-console/Makefile
5 @@ -20,7 +20,7 @@
6 CFLAGS+=-I. -I../lib
7 CFLAGS+=-DMPACK_HAS_CONFIG
8 LDFLAGS?=
9 -LDFLAGS+=-pthread
10 +LDFLAGS+=-pthread -latomic
11
12 MAKEFLAGS+=--no-print-directory
13
14 --- a/backend/balboa-mock/Makefile
15 +++ b/backend/balboa-mock/Makefile
16 @@ -20,7 +20,7 @@
17 CFLAGS+=-I. -I../lib
18 CFLAGS+=-DMPACK_HAS_CONFIG
19 LDFLAGS?=
20 -LDFLAGS+=-pthread
21 +LDFLAGS+=-pthread -latomic
22
23 MAKEFLAGS+=--no-print-directory
24
25 --- a/backend/balboa-rocksdb/Makefile
26 +++ b/backend/balboa-rocksdb/Makefile
27 @@ -27,7 +27,7 @@
28 CFLAGS+=-DMPACK_HAS_CONFIG
29
30 LDFLAGS?=
31 -LDFLAGS+=-lrocksdb -pthread
32 +LDFLAGS+=-lrocksdb -pthread -latomic
33
34 MAKEFLAGS+=--no-print-directory
35
11 release.patch
22 spelling.patch
33 print-uint64.patch
4 add-latomic.patch