25,994 questions
-1
votes
0
answers
55
views
OpenCV build fails on Ubuntu 24.04 with 'fatal error: stdlib.h: no such file or directory' despite file existing
I obtained OpenCV latest version (4.12.0), with extra modules, from it's github repository but I cannot build it on linux (ubuntu 24).
Using CMake (3.28), the build systematically gives:
/usr/include/...
-1
votes
0
answers
38
views
VTK rendering window doesn't display
I have recently tried installing VTK 9.5 on Ubuntu 24.04 from source (latest .tar.gz release) but when I compile a really simple example code the window doesn't show up. I would like my vtk ...
-1
votes
1
answer
55
views
Having issues launching Visual Studio 2019 and creating standalone .EXE in Visual Studio 2022 like in Visual Studio 2019 [closed]
My habits have been ruined lately since a windows update (it seems) corrupted a file in .Net Framework, named clr.dll, preventing Visual Studio 2019 from launching (and not only that software). It ...
Advice
0
votes
2
replies
57
views
Building Qt6 with proprietary codecs for QtWebEngine
If you're a hobbyist programmer like me, perhaps you have had need to build Qt6 from source so that you can include the proprietary codecs needed to play audio and video from web pages loaded through ...
0
votes
0
answers
47
views
How to force NCCL build to embed PTX for all kernels (prevent linker from stripping ncclDevKernel PTX)?
I am compiling NCCL 2.27.5-1 (I tried also 2.28.9-1) from source for a V100 GPU (sm_70). My goal is to have libnccl.so contain compute_70 PTX for every kernel.
Despite passing explicit -gencode=arch=...
0
votes
0
answers
45
views
libpyjini.so not found - White screen on smartphone
I'm trying to generate an APK build, and I'm getting the following error:
#Resumo do Erro:
nativeloader: Load libpyjni.so using class loader ns clns-4 (...) dlopen failed: library "libpyjni.so&...
0
votes
0
answers
47
views
React Native – Error spawn Unknown system error -8 when running npx react-native run-android on macOS
I am trying to run my React Native Android project on macOS using:
npx react-native run-android
But the build fails with this error: error Failed to install the app. Command failed with Unknown ...
-1
votes
1
answer
71
views
How to systematically untrack build files from a git repository? [closed]
Branch x in my git repository contains the undesired build files. It happened because I do not separate build directory from the source code and I git add-ed the build files. The main branch is in a ...
-3
votes
0
answers
34
views
How to use custom version of swift in Xcode? [duplicate]
I am using Mac 14 and the highest version of Xcode that I can install is 16.2
And it comes with the bundled swift component - 6.0.3 version.
But my project requires swift 6.2 or later.
I was able to ...
1
vote
1
answer
28
views
Error "error: ERR 211 Not enough local stack" while building on GeneXus 17
When building a KB in GeneXus 17, it outputs the following error:
error: ERR 211 Not enough local stack
Followed by:
warning: [BuildDaemon] Auto restarting Specifier daemon. True - AutoRestartCount:
...
-3
votes
1
answer
86
views
Make rust place "auto-generated" files in configurable path (one for Linux, one for W10)
I want to keep voluminous "auto-generated" files separate from the files I write and edit. I also want the same Rust project to run in Linux and in W10. And I assume it's better that each ...
4
votes
1
answer
209
views
Why when I build my Python library from C code, the Python functions don't work
I'm trying to build a Python library from C code. I'm on macOS.
When I only build the .so file and link it in Python like this, all the functions work as intended:
import sys
sys.path.append("...
2
votes
0
answers
78
views
What is the exact order guarantee that CMake add_dependencies gives? [duplicate]
We are using CMake and ninja to build our project. We wanted to regenerate a cpp file at every build, containing the build timestamp, so that our executable can log it. We came up with this:
##########...
1
vote
1
answer
52
views
Nextjs 15.2 Mdx, Shiki, Rehype-pretty-code Build error
So I'm trying to build my Next.js project, which, for context, was being deployed without a problem, up until my main branch. When I then tried to implement mdx, with rehype and shiki, and tried to ...
1
vote
2
answers
153
views
How can we make CMake generate a .cpp file and compile a library at every build?
In our project (C++ + CMake), we are trying to embed into a log line the project build timestamp. We thought of using a CMake custom command, and we managed to make it regenerate a .cpp file at every ...