Skip to main content
3 votes
3 answers
126 views

In the main project there are 3 shared library sub-projects and one binary project. The shared library libb.so depends on liba.so and shared library libd.so depends on libb.so and lastly the binary op ...
Harry's user avatar
  • 4,334
0 votes
0 answers
55 views

I've got two strange errors, which occur when linking a static library (not written by me) into my C++ project intended to run on a Raspberry Pi. Compilation (both of the lib, and of my client code; ...
Neppomuk's user avatar
  • 1,239
0 votes
1 answer
138 views

I am having some trouble configuring raygui.h with cmake using two targets, a library and a executable. There is a repository here with the exact files that causes errors of multiple definition of ...
Natan Camargos's user avatar
5 votes
2 answers
166 views

I'm writing a header-only library which defines class X in header x.hpp. The implementation of X is different for different standard versions: #if __cplusplus < 201703 class X { int a; ...
yuri kilochek's user avatar
0 votes
0 answers
175 views

I've been working on a C++ project. I have been using 2 Windows PCs for building it and both worked fine with the same (kinda janky) setup. I recently got a new computer and I get a linker error. My ...
indjev99's user avatar
  • 122
0 votes
2 answers
66 views

I've got a problem with a static library (.a file) I'd like to include into my project: Compilation (with gcc) works well, but linking ends with the library not being found by ld whatever I do: arm-...
Neppomuk's user avatar
  • 1,239
1 vote
1 answer
65 views

I have a pre-built image of a shared library, and that library implements main() with something like: int main(...) { bootstrap(...); return 0; } bootstrap(...) { /*...*/ sc_main(...);...
sh1's user avatar
  • 5,020
0 votes
0 answers
88 views

I’m migrating an existing React Native app to React Native 0.82.x. Android builds and runs fine, but iOS fails at the link step with the following error: Undefined symbols for architecture arm64: &...
Ahmet Hoşca's user avatar
1 vote
6 answers
213 views

Suppose I'm working a library; say it's in C for simplicity. This library exposes and defines two functions: f(), which calls an auxiliary function aux(), declared but not defined by my library. g() ...
einpoklum's user avatar
  • 138k
0 votes
1 answer
229 views

I'm trying to build, using CMake, a program involving C++ and CUDA-C++ code. It used to build file, several months ago, but - now am getting a linker error I'm not familiar with: in function `main....
einpoklum's user avatar
  • 138k
0 votes
0 answers
106 views

I'm following this C++ WebGPU tutorial (with associated Git repo here) in another language, and so must rewrite the build script accordingly. The tutorial calls wgpu::glfw::CreateSurfaceForWindow ...
William Ryman's user avatar
4 votes
2 answers
161 views

I have a weird problem when doing inline asm and compiling/linking with avr-g++ (version 16, fresh from the Git). I think this might be a bug of the tool chain, but I wanted second opinions in case I ...
krab5's user avatar
  • 105
0 votes
0 answers
86 views

My Qt isn't able to detect MSVC 2022 compiler only showing MINGW compiler in installation. I have Visual Studio with MSVC 2022 Latest and have all the necessary configuration like software ...
Abril's user avatar
  • 1
0 votes
0 answers
186 views

I am writing a hobby OS kernel in Rust for the riscv64gc-unknown-none-elf target. I have defined my trap_entry, as a #[unsafe(naked)] function within a Rust module. When I compile in release mode (...
陈嘉澪's user avatar
0 votes
0 answers
73 views

I'm integrating the native iOS VStarCam SDK into my Flutter project using MethodChannel. On iOS, I get multiple "Undefined symbol" linker errors when building the app for a physical device. ...
Sadhu Sanjay's user avatar

15 30 50 per page
1
2 3 4 5
271