简体   繁体   中英

Eclipse CDT issue with building project

I'm getting a strange problem with my C/C++ dev environment. I had installed gcc, g++ on my linux box(ubuntu 14.04). With the hello world program being built on my system I'm getting this error:

make all 
/bin/sh: 1: Syntax error: Unterminated quoted string
make: *** [src/Banker's.o] Error 2

has anyone encountered to this problem before could help me with this?

It looks like your problem is in the name of the file you're trying to compile: Banker's.c . Rename the source to Bankers.c without the single quote in it.

mv src/"Banker's.c" src/"Bankers.c"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM