From: Etienne CHAMPETIER Date: Tue, 1 Jul 2014 16:26:24 +0000 (+0200) Subject: protobuf: make it compile with __MIPSEB__ (ar71xx) X-Git-Tag: v14.07~214^2 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=92fc1687c1654aa06b30a48ead984578f6cc1e4e;p=feed%2Fpackages.git protobuf: make it compile with __MIPSEB__ (ar71xx) it's only compile tested Signed-off-by: Etienne CHAMPETIER --- diff --git a/libs/protobuf/Makefile b/libs/protobuf/Makefile index e5593c2a1a..1553a7edc5 100644 --- a/libs/protobuf/Makefile +++ b/libs/protobuf/Makefile @@ -16,6 +16,7 @@ PKG_SOURCE_URL:=http://protobuf.googlecode.com/files PKG_MD5SUM:=a72001a9067a4c2c4e0e836d0f92ece4 PKG_BUILD_DEPENDS:=protobuf/host +PKG_USE_MIPS16:=0 PKG_INSTALL:=1 diff --git a/libs/protobuf/patches/001-mipseb-compile.patch b/libs/protobuf/patches/001-mipseb-compile.patch new file mode 100644 index 0000000000..6eb059000e --- /dev/null +++ b/libs/protobuf/patches/001-mipseb-compile.patch @@ -0,0 +1,11 @@ +--- a/src/google/protobuf/stubs/platform_macros.h ++++ b/src/google/protobuf/stubs/platform_macros.h +@@ -49,7 +49,7 @@ + #elif defined(__ARMEL__) + #define GOOGLE_PROTOBUF_ARCH_ARM 1 + #define GOOGLE_PROTOBUF_ARCH_32_BIT 1 +-#elif defined(__MIPSEL__) ++#elif defined(__MIPSEL__) || defined(__MIPSEB__) + #define GOOGLE_PROTOBUF_ARCH_MIPS 1 + #define GOOGLE_PROTOBUF_ARCH_32_BIT 1 + #elif defined(__pnacl__)