When I use C Api for Mysql, I heard that I need to compile with gcc like gcc $(mysql_config --cflags --libs) source.c but it is tired using this awkward whenever compile c file using mysql.

isn't there any good ways to compile like gcc source.c when using Mysql C api.

please help me!

link|improve this question
feedback

2 Answers

Learn how to write a small Makefile, and you'll simply type make to compile your program.

link|improve this answer
feedback

Just set up a makefile to compile the scripts for you and use "make" instead of gcc each time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.