i have a large chunk of C++ code that I'd like to use on the arm9/zynq, but it contains a lot of calls to boost::format and the xilinx tools don't like it.
How do I install a library so that the xilinx tools will work with it?
i have a large chunk of C++ code that I'd like to use on the arm9/zynq, but it contains a lot of calls to boost::format and the xilinx tools don't like it.
How do I install a library so that the xilinx tools will work with it?
You can add software libraries to any project in the Xilinx SDK using the following sequence:
1. Right-click on the software project and select "Properties".
2. Expand C/C++ Build and click on Settings.
3. Expand ARM gcc linker and click Libraries.
You can add the library name in the upper box, and add a search path in the lower box.by clicking on the Add icon for each field. If your library name is libZynqHDMI.a, add the name ZynqHDMI.
Ron