The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
46 views

C String encoding UTF8 without libiconv

I know this question has been answered to most of the languages but i have not found a solution for C or i am misunderstanding something. I have declared a "char *strSSID". I have a function in a web ...
0
votes
0answers
28 views

Cant compile GDB Server

Im trying to cross-compile gdb server for a mips arch with my vendor toolchain (im using a uClinux distribution). ./configure --host=mips-linux-uclibc ...
2
votes
1answer
66 views

lpc1788 cortex m3 interrupt handling with uclinux

I am newbie for the uclinux device drivers please guide me how to do this.. suppose I have connected a switch to one of the cortex m3 controller pin and whenever the switched is press the LED ...
-1
votes
1answer
43 views

cross-compiled valgrind does not detect obvious leaks

I cross compiled valgrind to openwrt x86 platform. It doesn't detect any leaks when running on target. On ubuntu, it works fine. I would really appreciate any pointers to poke around. Thank you very ...
0
votes
1answer
70 views

How to disable SVC ARM instruction (gcc, uclibc, buildroot)?

I'm using buildroot. Compilation works fine, but binaries on target system says "Illegal instruction" I have used strace: execve("/opt/busybox", ["/opt/busybox"], [/* 8 vars */]) = 0 brk(0) = 0 ...
1
vote
0answers
81 views

Problems with custom MIPS toolchain and abicall stuff

I'm working on a project focusing on the MIPS32 arch (little endian). The vendor gave me a GNU toolchain to compile my project targeting their embedded Linux version and everything works just fine. ...
1
vote
1answer
58 views

st_mtimensec not available in struct stat

I'm trying to compile Evas for the host mipsel-linux-uclibc. I'm using an old binary toolchain from my company to do it. It was compiled around 2008 and I'm kinda stuck with it right now. Looks like ...
0
votes
1answer
169 views

buildroot file system & cross compiling: dynamically linked application fails but static ok. How to link against uClibc

I have a buildroot created file system, and I am trying to execute some c-code on lighttpd server. I have created a simple C module that just prints out few lines of html. Code looks like this: ...
0
votes
0answers
58 views

undefined reference to `sched_setaffinity' in linux

What can be the reasons for this error???? I am building an app on MIPS linux platform with toolchain mipsel-linux-uclibc, I have the header at right place. Please help... Following is the error I ...
1
vote
3answers
227 views

uClibc vs glibc for real time Linux application programming

I am writing a user space audio application which runs over Linux (Kernel 3.0) , and it need real time behavior. Should I go for glibc or uClibC ? How uClibC and glibc are compared with respect to ...
0
votes
1answer
68 views

Setting up cross-compiler for MIPS-I version 1

I was looking for cross compiler which is compiling for MIPS-I version 1 target and I found this: ftp://ftp.dd-wrt.com/others/sourcecode/toolchains/current-toolchains.tar.bz2 After archive ...
-3
votes
1answer
44 views

GCC compiled program without -o name works without it it doesn't [closed]

I'm cross compiling a program using the uClibc buildroot cross-compiling toolkit targeting an arm processor. When I compile a simple test program with arm-buildroot-linux-uclibcgnueabi-gcc hw.c and ...
9
votes
1answer
163 views

Can GHC link binaries against a libc implementation such as uclibc (used in OpenWrt by default)?

I am using Debian/MIPS+QEMU to build MIPS ports of PortFusion (a TCP tunneling solution). The resulting binaries are linked against GNU libc. Thus, they cannot be just copied over and used on vanilla ...
3
votes
2answers
282 views

Alternative to gethostbyname where I can choose the DNS server?

I need to resolve some hostnames from my application. Is there any alternative to gethostbyname where I can give as a parameter my own DNS server to use as a resolver? I have already coded my own ...
9
votes
1answer
479 views

Cross compile PHP with UCLIBC

THIS IS A REPOST, PREVIOUS POST GOT CLOSED, MOVED TO SERVERFAULT AND CLOSED AGAIN. I think this post is a valid stackoverflow problem because i think its caused by some automake/compile/linking error. ...
1
vote
1answer
88 views

RESTful client API for uCLib

I need to implement a RESTfull client in an embedded environnement using uClibc. Is there any open source library that implements RESTful Client in C that could only rely on µClibc?
0
votes
1answer
665 views

Which library shall I add to get fcntl64, stat64, … resolved?

I'm trying to build a project for ARM uClibc environment, but I've some functions missing. Can not find which library shall I include to resolve dependancies. nm do not help me to search, since it ...
1
vote
1answer
2k views

ARM gentoo crossdev with uclibc: need OABI rather than EABI

Can anyone help with my ARM + GCC + UCLIBC linking issue with crossdev? Also posted to Gentoo Forums here: http://forums.gentoo.org/viewtopic-t-925012.html Recently, I was assigned to a project that ...
0
votes
1answer
206 views

How to compile using uclibc?

Hi all I have installed buildroot toolchain and am able to compile simple "Hello World" program which runs on uClibc based chroot. However I am confused how to do so for programs that use ./configure ...
1
vote
2answers
191 views

compiling valgrind using uCLibc

I am working on a project and i want to compile valgrind using uClibc. Can anyone suggest me something about how to proceed? I am using fedora and i386 platform. the target platform is also i386 at ...
0
votes
1answer
313 views

How to build package with uclibc with bitbake - Bitbake raises MultipleMatches exception while trying to build uclibc

I am trying to build uclibc for arm7a architecture, via bitbake, but I get the following output user@ubuntu:~/stuff$ bitbake -b uclibc ERROR: Unable to match uclibc (19 matches found): ERROR: ...
2
votes
1answer
526 views

arm-angstrom-linux-gnueabi-gcc linker fails to link against uclibc

I am trying to build an application for angstrom linux (that uses uclibc instead of libstdc++, in my case). I am using bitbake and openembedded. With a simple toolchain I am able to build successfully ...
0
votes
1answer
174 views

Getting “Unknown error 2” when running BusyBox applets compiled against uClibc

I am trying to make an embedded Linux for a SuperH processor board. I am using the Buildroot 2012.2 toolchain with uClibc. All compiles fine but when I try to run some of the BusyBox applets (for ...
2
votes
1answer
376 views

Compiling with non primary libc,(i.e eglibc,uClibc)

I am working in an embedded environment. I have a cross compiler for ARM architecture with eglibc as it's primary library (ie. the default libc coming along with the tool chain). Now I want some of ...
1
vote
2answers
138 views

Error from socket() call

I wanted to add IPv6 support for my program and came across odd error. I want to open socket which accepts connections. Here is my scenario: First I use getaddrinfo() to find socket configuration: ...
2
votes
5answers
409 views

Howto use readlink with dynamic memory allocation

Problem: On a linux machine I want to read the target string of a link. From documentation I have found the following code sample (without error processing): struct stat sb; ssize_t r; char * ...
0
votes
2answers
194 views

API to check information about CPU, memory, network, NAT table usage

I am developing an embedded Linux system (2.6 kernel and uclibc) and I need to check for cpu, memory, network, NAT Table usage, etc... Which API should I use? Where can i check it? I have visited ...
2
votes
1answer
142 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
260 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 ...
2
votes
1answer
944 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 ...
0
votes
1answer
227 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. ...
1
vote
1answer
387 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
136 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.
0
votes
1answer
606 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 ...
3
votes
0answers
381 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 ...
1
vote
1answer
351 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 ...
6
votes
2answers
4k 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 ...
5
votes
1answer
498 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
560 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 ...
3
votes
2answers
833 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
324 views

Is ucLibc malloc thread safe?

Is ucLibc malloc thread safe?
5
votes
2answers
2k 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 ...
5
votes
3answers
1k 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 ...
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 ...