libcln: Patch to build with clang

This commit is contained in:
Fredrik Fornwall 2017-01-15 19:38:37 +01:00
parent ef98cf1c18
commit 093bb798f1
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,21 @@
Fix error building with clang:
base/low/cl_low_div.cc:210:8: error: declaration of 'divu_64_rest' in global scope conflicts with declaration with C language link
age
uint64 divu_64_rest;
^
./base/cl_low.h:982:21: note: declared with C language linkage here
extern "C" uint64 divu_64_rest; // -> Rest r
diff -u -r ../cln-1.3.4/src/base/low/cl_low_div.cc ./src/base/low/cl_low_div.cc
--- ../cln-1.3.4/src/base/low/cl_low_div.cc 2011-04-08 23:07:28.000000000 +0200
+++ ./src/base/low/cl_low_div.cc 2017-01-15 18:37:40.666599325 +0100
@@ -207,7 +207,7 @@
#endif
#ifdef NEED_VAR_divu_64_rest
-uint64 divu_64_rest;
+extern "C" uint64 divu_64_rest;
#endif
#ifdef NEED_FUNCTION_divu_6464_6464_

View File

@ -0,0 +1,17 @@
diff -u -r ../cln-1.3.4/src/base/low/cl_low_mul.cc ./src/base/low/cl_low_mul.cc
--- ../cln-1.3.4/src/base/low/cl_low_mul.cc 2011-04-08 23:06:30.000000000 +0200
+++ ./src/base/low/cl_low_mul.cc 2017-01-15 18:42:11.755489083 +0100
@@ -50,11 +50,11 @@
#ifdef NEED_VAR_mulu64_high
-uint64 mulu64_high;
+extern "C" uint64 mulu64_high;
#endif
#ifdef NEED_FUNCTION_mulu64_
-uint64 mulu64_high;
+extern "C" uint64 mulu64_high;
namespace cln {
extern "C" uint64 mulu64_ (uint64 x, uint64 y);
uint64 mulu64_ (uint64 x, uint64 y)