All Questions
1,822
questions
-1
votes
0
answers
19
views
Entry Point Error in Standalone Executable Built with CMake and SFML [duplicate]
Trying to open built exe file, I have this error which pop The procedure entry point _ZNSt15basic_streambuflcSt11char_traitslcEE7seekposESt4fposliESt13_los_Openmode is not found in the dynamic link ...
0
votes
1
answer
26
views
Standard Method of Supporting Vendors Using C++ and Premake
I am working on a template that makes use of Premake and GoogleTest, but I am having issues finding any documentation on a standardized method of implementing Premake. The source that I have been ...
0
votes
1
answer
41
views
Bazel (C++) link error - how to know which function is unresolved (Bazel does not tell this)?
I build a C++ project with Bazel on Linux using the command:
bazel build ...
And I get the following error message:
INFO: Analyzed target //cpp/bin/operator:operator (0 packages loaded,
0 targets ...
0
votes
0
answers
32
views
CMake target_link_libraries for boost-python is the variable ${PYTHON_LIBRARIES} needed?
I am following Advanced C++ / Python integration with Boost.Python tutorial to get a get a grasp on Boost-Python lib.
In the example above I have:
hello.cpp :
#include <boost/python.hpp>
#...
0
votes
0
answers
29
views
ld: framework 'cef' not found error occurs when integrating CEF with Unreal Engine 5.4 plugin
Summary
I'm developing a plugin for Unreal Engine 5.4 that integrates the Chromium Embedded Framework (CEF) to display a web browser within the game. When I try to build the plugin on macOS (MacBook ...
0
votes
1
answer
58
views
Build execuable that depend on codes that belonged to Godot source code using SCons
Here environment:
Windows 11
Visual Studio 2022 with Windows 11 SDK, MSVC v143 for complier
vscode as editor
SCons v4.8.1 with python 3.12.7
Godot 4.4 source code, git repo here
I am not very familar ...
1
vote
1
answer
195
views
How do I build a C++ program on ESP-IDF?
I have files: main.cpp, test1.cpp, test1.hpp, test2.cpp, test2.hpp, test3.cpp, test3.hpp ...
How can I build those files to flash into ESP32. (I use ESP-IDF v5.3.0 in VS Code).
Thank you!
I try to ...
1
vote
1
answer
50
views
How to use different version of a Conan packaged library for different versions of the operating system or compiler?
I have the following conanfile.txt.
[requires]
boost/1.79.0
oatpp/1.3.0
sqlite3/3.39.4
oatpp-sqlite/1.3.0
On Ubuntu 24.04.1 LTS with g++ 13.2.0 the build gives me the following error:
[cmake] ERROR: ...
1
vote
2
answers
84
views
C++ Cmake: How to test if compiler exists and select it
How in Cmake test if compiler exists and if true then select it? Or some function to manually set desired compiler and it`s toolchain inside CMakeLists.txt, without external env variables nor ...
0
votes
1
answer
211
views
From command line build to CMakeLists.txt
I'm having issues translating my command line executable creation to a the correct CMake command in my CMakeLists.txt. Running the following in command line:
g++ PRIMPP.cpp -O3 -march=native -fopenmp
...
0
votes
2
answers
54
views
How to stop VS Code from creating default build task on F5 press?
By accident I selected "don't ask me again" on some feature in VS Code after pressing F5. Now, every time I press F5, it adds the default task in the tasks.json even when I have two other ...
0
votes
2
answers
113
views
wxWidgets setup with mingw64 and vscode
I have tried everything from wxWiki to chatGPT and nothing solves my issue, please note that I do not need an alternative solution, and want to understand what I am missing in this implementation.
...
0
votes
0
answers
41
views
How to I build a library (MQTT-C) using a prebuilt library (MbedTLS) as a dependency, while ensuring the include directories are actually included?
MbedTLS/CMake has been driving me crazy. Hopefully someone here can enlighten me over what I'm doing wrong.
I've been able to build MbedTLS, but when I try to use it as a dependency for MQTT-C, it ...
0
votes
0
answers
77
views
conan install can't find package but conan search does
I have a dependency between two conan packages (using conan v1). When running conan install in the downstream package, conan can't find a dependent package satisfying certain criteria. When I run ...
0
votes
2
answers
41
views
arduino class yields multiple function definition warnings - build fails
When I build an Arduino project (Visual Studio/Visual Micro) I get multiple definition warningsfor my functions (ex: JsonToClass(String json)).
Command.cpp.o (symbol from plugin)*: In function ...