Questions tagged [linaro]

Linaro is an organization that provides solutions for the Arm ecosystem, but it is not limited only to this architecture. This tag should be used in questions related to any of the Linaro's solutions.

Linaro is an organization that focuses in solutions mainly for the Arm ecosystem. Through collaboration, Linaro gathers industry and open source communities to work together developing great tools, elaborating key projects, reducing redundant effort, etc.

More information: http://www.linaro.org/about/

90 questions
1
vote
2 answers

How to avoid multiple definitions? Linker ignored defined symbol with some exception

I am working on an embedded system which has its own library (e.g. libc_alt ) implementing some functions from standard libc (fopen, fclose, fread, fseek, ftell) but not all ( I need memset, memcpy, longjmp, setjmp, etc. from the standard libc ).…
Khoa Tran
  • 41
  • 1
  • 5
1
vote
1 answer

Cross compile for specific CXXABI and GLIBCXX version

I wanna cross compile a software for an ARM target running on Linaro 14.04. When I cross compile from my Ubuntu 18.04 using arm-linux-gnueabihf-g++, and I try to run it on target, I obtain this error : ./main:…
Furlings
  • 71
  • 1
  • 10
1
vote
0 answers

Eclipse Crti.o and Crt1.o cannot find

I build sample code with cross compile linaro. I have two situations Situation 1: I download gcc-linaro-5.5.0-2017.10-x86_64_arm-linux-gnueabihf from linaro website and extract it to path /home/xxx/opt/toolchains. I also…
Trung Trinh
  • 57
  • 1
  • 7
1
vote
1 answer

ARM toolchain looks in the wrong directory for libraries

For my project I need to compile Qt 5.9.1 for a generic ARM device. I've set up linaro's toolchain. But Qt configure halts at this: /usr/bin/arm-linux-gnueabihf-g++ -mfloat-abi=hard --sysroot=/mnt/elvees-rootfs/ -Wl,-O1 -fuse-ld=gold -o verifyspec…
DarkMalex
  • 55
  • 1
  • 8
1
vote
1 answer

Linaro version vs GCC version

I have just noticed that Linaro version and GCC version do not match. As of today current stable version of GCC is 6.2. Current stable version of Linaro is 6.1-2016.08 (link from Linaro's main page). There is also Linaro version 6.2-2016.11…
yurko
  • 623
  • 1
  • 7
  • 21
1
vote
0 answers

Unable to execute heat_cpu on ARM, unable to find the source code

I want to test the cpu pm operation using this tool. I got the binaries which are running on X86: git://github.com/JackyBai/pm-test/ But i did not find the source code of that. As i want to run on ARM64, can anybody help me to share the link. The…
Rahul Khandelwal
  • 149
  • 1
  • 12
1
vote
1 answer

Running test cases using lava

I am a newbie using lava test framework. Suppose I have some setup-ready ARM boards and running Linux or Android system, accessible by ssh/adb through network. Is that possible only to run some test suites, for example, gcc testsuites, opencl…
1
vote
0 answers

linaro/gcc-aarch64-none-elf/4.9-2015.03 issue with NEON

I'm compiling an ARM code that doesn't support the NEON, but I'm getting an exception, because one of the C-Library "printf" is trying to access a NEON register Q0 "str q0, [x29,#112]". I used a lot of options in order to prevent the compiler…
Ilyes
  • 63
  • 1
  • 4
1
vote
0 answers

CubieBoard Sound Driver

I'm using CubieBoard 1(A10), it have an Image of Linux Linaro to Run from MicroSD on its DVD. it has the sound drivers for HDMI and AUX Jack. in the "/proc/asound" there are some folders "Card0, Card1, Sun4iCodec, sun4isndhdmi". and I can Play…
1
vote
1 answer

GYP Error installing Node on pcduino

I'm installing NodeJS on a pcDuino v2 (running Linaro 12.07), and during the ./configure step i get the following error: gyp:name 'arm_version' is not defined while evaluating condition 'arm_version==7' in /home/ubuntu/node/deps/v8/tools/gyp/v8.gyp…
1
vote
2 answers

Statically linked binary requires shared library libnss

I was cross compiling for android using linaro and codesourcery toolchains i found even after providing -static here problem seems to come from glibc dynamically link libnss_* libraries. Here is my code #include #include int…
Shushant
  • 1,625
  • 1
  • 13
  • 23
1
vote
1 answer

how to get the last address of an ARM image?

I have a bare metal stand alone elf image compiled with linaro gcc. I need to find out the last address in that image. I tried doing this with objcopy -O ihex , and writing a small script to parse the ihex output, but this fails if the addresses…
WeaselFox
  • 7,220
  • 8
  • 44
  • 75
1
vote
1 answer

Clang/llvm: crt1.o crti.o not found while cross compilation

I am trying to cross compile a sample hello world program on ARM using clang/llvm. i am facing some problem in linking. clang -target arm-none-linux-gnueabi hello.c It shows some error that "no such file or directory "stdio.h" so to avoid the error…
Siva Padhy
  • 99
  • 6
1
vote
1 answer

Cross Compile Android (Mako) Kernel with Linaro Toolchain

i successfully compiled and boot my own kernel with this tips: http://astro.temple.edu/~tue68607/project/articles/customized-android-aospsystem-nexus4.html so now I wanted to use Linaro toolchain. I tested setting path with the Google's method but…
0
votes
1 answer

GCC support for cortex-a55

Can someone please let me know which version of GCC onwards has the support for cortex-a55 as the mtune/mcpu option? Below is the link mentioning the support has been added, however am unable to correlate which is the exact GNU version this support…