python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k 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
How to form a proper if else in make to find user?
I am very new to make and have wanted to learn more about conditionals.
I want to check the result of whoami in a makefile but keep getting errors
ifeq ($(whoami), "John")
echo "PC"...
Anonymous
Votes: 0
Answers: 1
cross compilation of a c program from x86 to arm with cython library
I would like to compile a C program that I made for my raspberry pi from my PC.
My program uses the rt, pthread and cython libraries.
I use the arm-linux-gnueabihf-gcc compiler for this and I made a m...
Tears4fears
Votes: 0
Answers: 1
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