Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem in 'c' language inside compiling with gcc.

  1. I am using "Cygwin" with (gcc-core, gcc-g++, gdb, make & other supportive packages) inside windows xp.
  2. I installed "Cygwin" on this path "C:\Cygwin\".
  3. My home directory: "C:\Cygwin\home\Bhanu Pratap"
  4. I copied "cs50.h" and "cs50.c" inside my working directory which is also under "C:\Cygwin\home\Bhanu Pratap".

This is code inside my hello.c file

#include "cs50.h"
#include <stdio.h>
int
main(void){
  string name = "David";
  printf("O hai, %s!\n", name);
}

This is command under bash (Cygwin)

gcc -o hello hello.c -lc50

I get this error:

/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/bin/id: cannot find -lcs50
collect2: Id returned 1 exit status

Please help me where i am wrong?

share|improve this question

3 Answers

up vote 0 down vote accepted

To be able to use -lcs50, you'll first need to build that library (cs50) from its source code (cs50.c).

Alternatively, you could simply:

gcc -o hello hello.c cs50.c

assuming cs50.c doesn't have other dependencies.

share|improve this answer

I'm also using the cs50 library file, and I've noticed in the code that you've used is :

#include "cs50.h"
#include <stdio.h>

and also this command :

gcc -o hello hello.c -lc50

just wondered why you used quotation marks, instead of '< >' and the last part of the command -lc50

we normally use it this way:

#include <cs50.h>
#include <stdio.h>

and -lcs50

hope this helps \m/

share|improve this answer

See the link http://manual.cs50.net for relevant guidance about guidance about installing the cs50.h library. They have a precompiled version of the cs50 library that can be downloaded and installed. It is worth a try. They used gcc to compile the library, and they beginning to switch over to clang, which can also produce 64 bit compatible libraries, which is going to more useful in the future.

share|improve this answer

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.