1

I apologize in advance for the possibly noobish question but I could not find the answer to this anywhere on the internet or SO for the past few days of looking.

I'm trying to create a c++ project in xcode and I want to use libjson to parse my json work. Unfortunately, I have been unable to get the environment load it. I tried the directions and looked through the make file. I ran make install and tried flicking various switches here and there in the make file. I basically tried to follow directions such as the one advised here: How to create a libJSON library?

When I try to run the make file I keep running into this issue for which I could not find a solution addressing it online:

/usr/bin/ranlib: file: libjson.a(JSONAllocator.o) has no symbols
/usr/bin/ranlib: file: libjson.a(JSONDebug.o) has no symbols
/usr/bin/ranlib: file: libjson.a(JSONMemory.o) has no symbols
/usr/bin/ranlib: file: libjson.a(JSONNode_Mutex.o) has no symbols
/usr/bin/ranlib: file: libjson.a(JSONPreparse.o) has no symbols
/usr/bin/ranlib: file: libjson.a(libjson.o) has no symbols

What does has no symbols mean? how could I compile it otherwise?

One person suggested adding the libraries directly but I was not sure how to get that done and kept getting compile errors.

I tried installing macport and successfully got jsoncpp to install but could not find libjson as a port. I want to end up using the c++ style interface for libjson.

I'm trying to get it to work on XCODE I have os 10.8.5 on an old early 2009 macbook intel core 2 duo.

EDIT: Here is the output of 'make install':

============================================================
libjson version: 7.6.1 target:  OS: Darwin
============================================================
Install header files
mkdir -p /Users/aps/Desktop/libj/include/libjson
cp -f ./*.h /Users/aps/Desktop/libj/include/libjson
mkdir -p /Users/aps/Desktop/libj/include/libjson/_internal/Source
cp -f ./_internal/Source/*.h /Users/aps/Desktop/libj/include/libjson/_internal/Source
cp -r ./_internal/Source/JSONDefs /Users/aps/Desktop/libj/include/libjson/_internal/Source
chmod -R a+r /Users/aps/Desktop/libj/include/libjson
find  /Users/aps/Desktop/libj/include/libjson -type d -exec chmod a+x {} \;
cp -rv _internal/Source/Dependencies/ /Users/aps/Desktop/libj/include/libjson/_internal/Source
_internal/Source/Dependencies/ -> /Users/aps/Desktop/libj/include/libjson/_internal/Source
_internal/Source/Dependencies//libbase64++ -> /Users/aps/Desktop/libj/include/libjson/_internal/Source/libbase64++
_internal/Source/Dependencies//libbase64++/libbase64++.h -> /Users/aps/Desktop/libj/include/libjson/_internal/Source/libbase64++/libbase64++.h
_internal/Source/Dependencies//mempool++ -> /Users/aps/Desktop/libj/include/libjson/_internal/Source/mempool++
_internal/Source/Dependencies//mempool++/mempool.h -> /Users/aps/Desktop/libj/include/libjson/_internal/Source/mempool++/mempool.h
Install header files: Done.
mkdir -p Objects_static
Archive
cd Objects_static ; \
    ar -cvq libjson.a internalJSONNode.o JSONAllocator.o JSONChildren.o JSONDebug.o JSONIterators.o JSONMemory.o JSONNode.o JSONNode_Mutex.o JSONPreparse.o JSONStream.o JSONValidator.o JSONWorker.o JSONWriter.o libjson.o  ; \
    mv -f libjson.a ../
q - internalJSONNode.o
q - JSONAllocator.o
q - JSONChildren.o
q - JSONDebug.o
q - JSONIterators.o
q - JSONMemory.o
q - JSONNode.o
q - JSONNode_Mutex.o
q - JSONPreparse.o
q - JSONStream.o
q - JSONValidator.o
q - JSONWorker.o
q - JSONWriter.o
q - libjson.o
Archive: Done
Install static library
cp -f ./libjson.a /Users/aps/Desktop/libj/lib
Install static library: Done.
4
  • Seeing libfoo.a(bar.o) has no symbols for example is not bad, but the message libjson.a(libjson.o) has no symbols concerns me — if I'm correct, libjson.o is a crucial object file, so that it should be nonempty. Can you update the question to include the output of make? That can give people some insight into this. Commented Nov 16, 2013 at 6:01
  • added. thanks for taking a look @Shigerello Commented Nov 18, 2013 at 2:32
  • Did you add the libjson.a library to your projects in xcode? Commented Nov 18, 2013 at 2:41
  • Hi @cube, I tried that multiple times but it didn't work. In the end, I tried just copying the entire source project into my xcode project and building it. it ended up solving the issue. Commented Nov 18, 2013 at 16:06

1 Answer 1

1

In the end, I tried just copying the entire source project into my xcode project and building it. it ended up solving the issue. I am still not sure why I could not make the library and get it to work but hopefully I will find out soon as well.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.