This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Can I add more than one gnu library to keil gcc project?

Now my project seems only see the 1st library, but complains can not found other libraries. I've add all other libaries include path .I am use mt2523 chip. I've also add all libraries(.a file) to my project.

Parents
  • The linker will try to bind everything you give to it, success might depend on the ELF/AXF files describing a consistent chip, ABI, version, model, etc.

    What might happen is you create a much larger list of dependencies, or inter-dependencies, which either require other libraries not provided or compatible with Keil, or where you've got to provide wedge or shim code to map to Keil equivalent functions to get closure.

Reply
  • The linker will try to bind everything you give to it, success might depend on the ELF/AXF files describing a consistent chip, ABI, version, model, etc.

    What might happen is you create a much larger list of dependencies, or inter-dependencies, which either require other libraries not provided or compatible with Keil, or where you've got to provide wedge or shim code to map to Keil equivalent functions to get closure.

Children
No data