25,997 questions
-1 votes
0 answers
11 views
How to use custom version of swift in Xcode?
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
16 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
70 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 ...
1 vote
0 answers
49 views
Building VLC for windows from source code [closed]
I am trying to compile and build VLC for windows from the source code, but I cannot build it… I read that I need to run bootstrap, configure and then make. But I cant run bootstrap, I am getting this ...
4 votes
1 answer
199 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
76 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
38 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
1 answer
132 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
0 answers
73 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
32 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 ...
1 vote
1 answer
105 views
How to compile 64-bit binaries for latest versions of OpenSSL (3.5.x) on the Windows 10
I am trying to compile latest version of the OpenSSL on Windows 10 machine (version 3.5.4). Prerequisites are: I ran x64 Native Tools Command Prompt for Visual Studio 2022 Community Edition I ...
1 vote
0 answers
78 views
EAS Build Fails with "Deprecated Gradle features" Cannot Generate APK
I've been trying to generate an APK of my React Native Expo Dev Client app, and I'm stuck on an error. I managed to generate it successfully the first time using EAS Build, and it worked. However, one ...
1 vote
1 answer
65 views
Application Angular 18 not working after the build
I am quite new to Angular and I've developed an application which I would like to use as an online portfolio of my programing achievementaz&. Locally, everything works fine, the routing is doing ...
0 votes
0 answers
59 views
Increase the maximum amount of lines in Visual Studio's output window
As explained in "NuGet Pack ..." error: The user name or password is incorrect. Where is "NuGet Pack" getting its information from?, I'm attempting to build a solution consisting ...
0 votes
1 answer
104 views
"NuGet Pack ..." error: The user name or password is incorrect. Where is "NuGet Pack" getting its information from?
While building my C++ application, the postbuild event contains the following command: NuGet pack "$(ProjectPath)" -OutputDirectory "$(TargetDir)NuGet" -...