0
I am doing a project using wxWidgets, and when the compilation appears the message: error: cannot specify -o with -c, -S or -E with Multiple files. I’m using codeblocks in Ubuntu and I don’t know what to do with this mistake.
0
I am doing a project using wxWidgets, and when the compilation appears the message: error: cannot specify -o with -c, -S or -E with Multiple files. I’m using codeblocks in Ubuntu and I don’t know what to do with this mistake.
Browser other questions tagged c c++
You are not signed in. Login or sign up in order to post.
For example when compiling
cc -c a.c b.c
will createa.o
and ab.o
. If we force a way outcc -o aaa -c a.c b.c
compiler gives error like what you get.– JJoao
And how can I set this up in codeblocks?
– Thrix