I run the following command to link the different files in my project.
/opt/gcc-4.7-cilkplus/bin/gcc -g -Wall -l /opt/gcc-4.7-cilkplus/lib64/ -o exec main.o \
mysql-client.o databaseConnection-common.o murmurhash3.o bloom-filter.o
`mysql_config --cflags --libs\` -lcilkrts
Note the option -l /opt/gcc-4.7-cilkplus/lib64/
When I run this command I get this error:
/usr/bin/ld: cannot find -l/opt/gcc-4.7-cilkplus/lib64/
but this directory is present in my system. Can anyone please tell the mistake.