python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Linker cannot find overloaded class operator whith universal type operand
I wanted to overload + operator for my other class and I reached a linker error. I shortened my code to make it easy to review
num.h
#ifndef NUM_H
#define NUM_H
#include <iostream>
#include <...
Tiko7454
Votes: 0
Answers: 0
Error when trying to linking libcurl in static
I'm new in C++ and I got a problem about linking libcurl in static, I downloaded sources and build it myself:
./configure && make install
Everything is okay, I write my cmake file, build my p...

Ectaclick
Votes: 0
Answers: 1
Shaderc (from conan) not linking in windows
I am trying to build a project in debug mode that uses conan for dependency management.
Most dependencies seem to link fine but shaderc is failing with error:
shaderc.lib(shaderc.obj) : error LNK2038:...

Makogan
Votes: 0
Answers: 0
Executing C functions from C++ file results in linker error: "conflicting declaration with 'C' linkage" and "previous declaration 'C++' linkage
I am attempting to execute a C function from within a C++ file in the Arduino framework. The function I am trying to run, GuiLib_ShowScreen, appears in GuiLib.h and GuiLib.c as follows (the files are ...
Jebussy
Votes: 0
Answers: 1