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 try to build libcurl as static library for iOs with xcode 4.2 + sdk 5.0 on OSX 10.6.8 with apple llvm compiler 3.0 or LLVM GCC 4.2.

It's compiled successfully (with both compilers) but have many warnings like this:

warning: no rule to process file '$(PROJECT_DIR)/../../../../ProjectName/Libs/curl-7.26.0/src/tool_bname.c' of type sourcecode.c.c for architecture i386

I checked target->Compile Sources it's have all .c files that needs and don't have any .h files.

I also tried to change Compile Sources As to "C" but is no take any effect.

I'm not understand how to fix it and why type of C sources is a sourcecode.c.c

share|improve this question
Since they're only warnings, maybe it's OK to ignore them. – Kenneth Hoste Jun 28 '12 at 11:25
@KennethHoste: "no rule to process file", it seems that some files was not compiled; the lib might miss some functionalities. Looks like an autotools / make issue. – Seki Jun 28 '12 at 12:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.