25,992 questions
0 votes
1 answer
41 views
Having issues launching Visual Studio 2019 and creating standalone .EXE in Visual Studio 2022 like in Visual Studio 2019
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
47 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
39 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
44 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
27 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
85 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
77 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
50 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 ...
2 votes
1 answer
106 views
Nx Angular build fails intermittently with nx run frontend:build:development - no error output despite --verbose flag
I'm experiencing intermittent build failures with my Angular application in an Nx monorepo. The build command nx run frontend:build:development sometimes succeeds and sometimes fails, but I cannot get ...
0 votes
0 answers
35 views
Docker build fails with random “Hash Sum mismatch” errors on macOS
I'm trying to build a docker image on my Mac, but it fails at installing some linux deps. I think it's all pretty standard, and it works for my colleagues, on CI/CD (details below) Relevant part: FROM ...