Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Eclipse Juno CDT.

I added the following to my project:

  • the mysql/includes path to the includes path setting
  • the libmysql.lib and zlib.lib to libraries setting
  • the mysql library path to the library paths setting

Now, when I make my project, the compilation throws an error when I run the application. This is the build:

10:08:56 **** Build of configuration Debug for project mysqlapp ****
make all 
Building file: ../src/mysqlapp.c
Invoking: Cygwin C Compiler
gcc -I"C:\Program Files\MySQL\MySQL Connector C 6.0.2\include" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/mysqlapp.d" -MT"src/mysqlapp.d" -o "src/mysqlapp.o" "../src/mysqlapp.c"
cygwin warning: 
MS-DOS style path detected: C:\Users\Yonaton\workspace\mysqlapp\Debug
Preferred POSIX equivalent is: /cygdrive/c/Users/Yonaton/workspace/mysqlapp/Debug
 CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
Finished building: ../src/mysqlapp.c

Building target: mysqlapp.exe
Invoking: Cygwin C Linker
gcc -L"C:\Program Files\MySQL\MySQL Connector C 6.0.2\lib\opt" -o "mysqlapp.exe"  ./src/mysqlapp.o   
Finished building target: mysqlapp.exe

And this is the run within eclipse:

10:09:55 **** Incremental Build of configuration Debug for project mysqlapp ****
make all 
src/mysqlapp.d:1: *** multiple target patterns.  Stop.

10:09:56 Build Finished (took 225ms)
share|improve this question
What's the error message? – Yuan Nov 22 '12 at 14:41
For your example LIBS shall carry -lz -lmysql. – alk Nov 22 '12 at 14:45
I think you are using Windows, is gcc/cygwin properly configured? – Anon Nov 22 '12 at 14:45
yes. its configured with eclipse. – jkushner Nov 22 '12 at 14:46
error message added to question – jkushner Nov 22 '12 at 14:54
show 2 more comments

2 Answers

up vote 0 down vote accepted

Under Project->Properties->C/C++ General->Paths and Symbols->Libraries do not add the file name of the library, nor the path.

So if you want to link against /lib64/libz.so just add z.

Or alternativly add the z under Project->Properties->C/C++ Build->Settings->GCC Linker->Libraries.

If the library is not located under a standard path add the custom search path for a library under Project->Properties->C/C++ General->Paths and Symbols->Libraries Paths.


Update (referring "multiple target patterns"):

make does not like DOS paths. In the .d file a : after the drive letter is interpreted as target delimiter.

Switch to UNIX paths (as you were already told to do ... ;-)).

(see also: "multiple target patterns" Makefile error)

share|improve this answer
Im adding the libraries within eclipse. Im not buildiing the makefile myself – jkushner Nov 22 '12 at 14:54
Im referring to Eclipse Juno. Please see my updated answer. @jkushner – alk Nov 22 '12 at 14:56
K That seemed to fix it. Now I have another problem... when I run the app, it works fine.. however, in eclipse, it prompts a new error - in mysqlapp.d, it says "multiple target patterns". It seems to be including mysql library files twice. – jkushner Nov 22 '12 at 15:03
1  
@jkushner: Add the contents of mysqlapp.d, perhaps? – DevSolar Nov 22 '12 at 15:16
pastebin.com/kccMxpAW – jkushner Nov 22 '12 at 15:18
show 7 more comments

If I remember correctly "-l" ( small L) before your libraries.

share|improve this answer
this file was built by eclipse. i dont think its that problem. i updated my question. – jkushner Nov 22 '12 at 14:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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