Tagged Questions
The uclibc tag has no wiki summary.
6
votes
2answers
1k views
Cross compiling for MIPS router from x86
My end goal is to compile wireless tools for my old Actiontec modem/router so I can configure it as a wireless to ethernet bridge. Currently it's wireless features are (seemingly) controlled by the ...
6
votes
5answers
2k views
Can I use boost on uclibc linux?
Does anyone have any experience with running C++ applications that use the boost libraries on uclibc-based systems? Is it even possible? Which C++ standard library would you use? Is uclibc++ usable ...
5
votes
3answers
824 views
Anybody cross compiled Mono for MIPS 64 using uClibc?
I am trying to statically cross compile Mono for MIPS. I am able to compile Mono, but it is always dynamically linked with it's dependencies, even though I specify static to the compiler.
I wrote a ...
4
votes
1answer
238 views
Is there an equivalent of set_new_handler() for malloc() failures?
In C++, you can arrange for a function to be called whenever new fails. Is there a way to have a function called whenever malloc fails? Assume that malloc is being called from third-party libraries ...
2
votes
1answer
163 views
How to compile NodeJS on a D-Link DNS 325 with fun_plug 0.5 installed?
I am trying to compile Node on my NAS device, but I get this error, and I don't really know how to make this work:
/node-v0.6.6/deps/v8/src/arm/constants-arm.h:33:2: error: #error ARM EABI support is ...
2
votes
0answers
95 views
uClibc Static Compilation Question
I am trying to cross compile for an ARM-based single board computer. I am using a uClibc toolchain designed for the board. I am extremely space constrained as far as ROM size goes, so I am trying to ...
2
votes
1answer
272 views
Looking for a pure c-version of math.h functions (no co-processor support)
i'm looking for some math.h definitions without co-processor use (e.g. sqrt, pow, remainder, tan; int/float/double).
When i looked for it in a libc shipped with some linux distributions (maybe now ...
2
votes
2answers
352 views
Glibc and uClibc side by side on one system
Is it possible to have glibc and uClibc based applications running side-by-side on one system?
Background: We have binary gcc based cross-compiler configured to link with uClibc. We have ...
2
votes
1answer
155 views
2
votes
2answers
1k views
Any porting available of backtrace for uclibc?
We are running the uclibc linux on ARM 9. The problem is uclibc doesn't support backtrace. When a core dump happens, I cannot grab the call stack.
Does anyone have a good solution for that?
For ...
1
vote
0answers
21 views
toolchain and libraries
When we compile a toolchain, we need to specify which library we are using to compile the toolchain. For example, i recently compiled toolchain for openRISC architecture. They gave me an option to ...
1
vote
1answer
43 views
Linux + uClibc + pthread (C) : application freezes at the end
I'm trying to build my own uClibc embedded system. I encountered some problems, but after 2 days, I solved all of them. Only one is remaining: pthread doesnt work correctly.
Here is simple program, ...
1
vote
1answer
61 views
Do uClibc/glibc provide any feature to redirect errors to syslog?
Do uClibc/glibc provide any feature to redirect errors to syslog?
The erros like "can't resolve symbol" need to go to syslog instead of stderr on console.
1
vote
1answer
104 views
Program compiled with glibc can run on Linux with uClibc?
I have a program compiled using glibc and I need it runs on a MIPS target with Openwrt firmware using uClibc. Is this possible? I put the program in Openwrt and when I try to run it the result is: not ...
0
votes
0answers
14 views
Using a buildroot created toolchain outside of Buildroot?
I'm trying to compile XFCE using Uclibc. Uclibc was generated by crosstool-ng via buildroot. How do i use the toolchain to build something outside of buildroot? I've had a look at the instructions on ...
0
votes
1answer
60 views
function wrapping in c - sbrk for tcmalloc
I am trying to port tcmalloc to uclibc. Tcmalloc has a definition for sbrk function, which in turn calls the __sbrk from libc. Uclibc on the other hand does not have __sbrk function, but has sbrk.
...
0
votes
0answers
41 views
add wchar to uclibc in digi me 9210 toolchain
I want to add wchar Support to uclibc in the Digi toolchain supplied with the Digi Connect ME 9210 Embedded Linux.
In buildroot I can simply do make uclibc-menuconfig and add wchar support.
Is there ...
0
votes
1answer
77 views
How do I do a static build with uclibc
I have a uclibc toolchain that works. I can compile a simple hello.c program statically (arm-linux-gcc hello.c -o hello -static -s) but source packages are automatically compiled dynamically. How can ...