python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
makefile error in c project multiple definitions
For a minimal reproducible example of this problem, please go to this link.
I'm working on a stm32 project that is initialized using stm32cubemx(Makefile) and I'm using vscode as ide.
Until now I had ...
mehdi
Votes: 0
Answers: 0
undefined reference to function when compiling using makefiles C
I am trying to run some experiments using a set of functions inside a file called coco.c (from the coco optimisation platform which can be found at https://github.com/numbbo/coco). This file also come...

Sam Mitchell
Votes: 0
Answers: 0
makefile fortran multiple directories
This has been asked many times but from none of the answers can I figure out how to do it.
Simply put, I have directory structure: SRC/ for all *.for and *.f90 files, BLD/ for all files needed for bui...
atapaka
Votes: 0
Answers: 1
Makefile executes if and else
The question is short actually.
This:
$(info Param: $(1))
ifneq (,$(findstring String,$(1)))
$(info FOUND)
else
$(info NOT FOUND)
endif
Produces this:
Param: ThisIsMyString
FOUND
NOT FOUND
W...
HightronicDesign
Votes: 0
Answers: 0