4,651 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
51
views
How to cross-compile a customized QGroundControl (Qt 6.8.3) for Jetson Nano (ARM64) from Ubuntu x86_64
I have been customizing QGroundControl and have successfully built it for my Ubuntu system (x86_64 architecture) using Qt 6.8.3. I utilized the provided shell scripts and Dockerfiles located in the ...
3
votes
0
answers
149
views
Cross-compiling GLIBC for ARM
I am tying to cross-compile GLIBC_2.36 from source for ARM. I am using arm-linux-gnueabihf toolchain to do this. The command I am passing from my build directory is below:
../glibc-2.36/configure --...
-1
votes
1
answer
47
views
touch screen by tslib does not work correctly on qt button
I have Lynx-9500 sls device which I did cross compile Qt5.12 library by it's toolchain. Qt cross compilation was ok with Tslib library, but when I create simple QWidget to test touch screen it does ...
0
votes
0
answers
141
views
C++ QT: How to cross compile QT5/6 CMake project?
I am trying to cross compile a QT project, that utilises CMake from from linux. From this thread I found out about MXE. I compiled the following packages:
qtbase
qt6
qt5
However running <mxe root&...
0
votes
2
answers
98
views
Add OpenSSL Dev Libraries to Yocto SDK target sysroot
I have a RISC-V dev board for which I am building Yocto Linux.
Some of the applications require OpenSSL and the development headers and libs to build the applications.
I have been able to add openssl ...
1
vote
1
answer
68
views
What are the differences between a x86 VxWorks and a Linux object files
There are two ways to create VxWorks applications:
Real-time processes (RTP), which are akin to a process in the Unix world.
Downloadable kernel modules (DKM), which run in kernel mode, akin to a ...
0
votes
1
answer
108
views
Cross-compiled executable for arm64: "No such file or directory"
I've cross-compiled an executable (AVR GCC) to run on Android arm64 device with aarch64-linux-gnu toolchain (not using Android NDK).
file avr-g++ gives the following in "adb shell":
file avr-...
0
votes
1
answer
84
views
g++: error: unrecognized command-line option '-Qunused-arguments'
I'm cross compiling avr-gcc to run on android arm64 devices with crosstools-ng on Ubuntu. While compiling i'm getting "g++: error: unrecognized command-line option '-Qunused-arguments'" ...
0
votes
0
answers
41
views
CircleCI fails `cargo test` for cross-compiled Rust project
I have a Rust project created with cargo that I'm trying to cross compile (see "targets" in rust-toolchain.toml below) with the following dir structure:
.
├── .circleci
│ └── config.yaml
├─...
1
vote
1
answer
225
views
How to install dev packages for Raspberry Pi cross-compiling?
I want to compile my project for Raspberry Pi 5. I want to run compilation in my PC that runs a Debian Linux, as it would be much faster than do it on a Pi. Installing the cross compiler is easy, but ...
0
votes
0
answers
81
views
setuptools: fetch a remote cross-compiled library
My C++ library uses external dependencies, most of which are open source, but at least one of them is only available as cross-compiled binaries.
In our CI workflow, we typically fetch the artifact ...
0
votes
0
answers
29
views
Is it possible to link a dynamic library using a higher version of glibc in a compilation environment with a lower version of glibc?
The scenario is this: My compilation environment is unified, using the lower-level glibc_2.18. I want to depend on a CUDA .so file compiled using the higher-level glibc_2.27.
My runtime environment ...
0
votes
1
answer
88
views
Using CMake for a multi-chip embedded project [duplicate]
I'm working on a robot that consists of an ARM based SBC with an AVR based control board and would like to use CMake to manage the builds.
My desire is to just run CMake once and have the build ...
0
votes
0
answers
36
views
Compile uClinux(old version) on Ubuntu 24.04.1
I am working on Ubuntu 24.04.1, and intend to compile uClinux200808.
But I have some problem. I don't want to use "docker".
It requires bison 2.3 and flex 2.5.4, so I solved it.
Then tried ...
0
votes
0
answers
53
views
Cross-compile to an old architecture?
My intention is to build an app (ffmpeg) to an old armv6 architecture (32-bit only).
To achieve this, I've used ct-ng to build the actual cross-toolchain, posting here my config for better overview of ...