Re: [OpenWrt-Devel] package olsr / compiler bug on ARM / MIPS when using -Os

2012-09-21 Thread Bastian Bittorf
sorry for late reply and breaking the ml-thread: You can add '-mno-branch-likely' option to CFLAGS. The option ensures that such instructions will not be emitted by the toolchain. Can you test again after r33328? This will need a complete toolchain rebuild. i tested a fresh build of

[OpenWrt-Devel] [PATCH] include C++ support in db47

2012-09-21 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 I'm building reSIProcate http://www.resiprocate.org which provides the repro SIP proxy and the reTurn server for ICE/STUN/TURN It requires db_cxx.h from db47 I've attached a patch to build the C++ support into the db47 package It is quite

[OpenWrt-Devel] [PATCH] package of asio for C++ async IO

2012-09-21 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 This is another dependency for reSIProcate (actually, for the TURN server component). It is also popular for boost users. I've tried to create a Makefile, but asio.hpp and the other asio/*.hpp files never get installed to staging_dir. Can

Re: [OpenWrt-Devel] [PATCH] include C++ support in db47

2012-09-21 Thread W. Michael Petullo
I'm building reSIProcate http://www.resiprocate.org which provides the repro SIP proxy and the reTurn server for ICE/STUN/TURN It requires db_cxx.h from db47 I've attached a patch to build the C++ support into the db47 package It is quite trivial: --enable-cxx and copy

[OpenWrt-Devel] PARALLEL_BUILD, PKG_BUILD_PARALLEL and PKG_JOBS

2012-09-21 Thread Daniel Pocock
In my package, I had to define PKG_BUILD_PARALLEL:=1 and also redefine Build/Compile: define Build/Compile $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) endef a) is it normal that I have to define Build/Compile just to get parallel build? I see other packages doing it that way. b) is

[OpenWrt-Devel] [PATCH] add reSIProcate (SIP proxy and TURN server) package

2012-09-21 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 I've packaged the reSIProcate SIP stack (shared library), repro proxy and reTurn, the ICE/STUN/TURN server. Please find the Makefile and related artifacts attached Benefits to OpenWRT: This provides a comprehensive platform for true federated

Re: [OpenWrt-Devel] [PATCH] package of asio for C++ async IO

2012-09-21 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 I've now got this working satisfactorily - revised Makefile attached On 21/09/12 19:10, Daniel Pocock wrote: This is another dependency for reSIProcate (actually, for the TURN server component). It is also popular for boost users.