I am completely new to Obj-C and am trying to compile Objective-C files with a large number.
The function was simple, just to initialize a large number and use NSLog to print it.
I used
#import <openssl/bn.h>
but xcode always displays me an error:
openssl / bn.h: There is no such file or directory.
I tried to find out if the .h file was missing and printed it in my terminal:
$ find bn.h
/Developer/SDKs/MacOSX10.6.sdk/usr/include/openssl/bn.h
/usr/include/openssl/bn.h
/usr/local/texlive/2010/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-bn.hyp.txt
I seem to have a bn.h file, but why didn't xcode let me compile?
Thanks for any help!
source share