Hello,
I'm trying to figure out the c++ library linker settings for my Xilinx SDK project. Does anyone know which libraries i need to set to use c++?
Kind regards,
Bob
Hello,
I'm trying to figure out the c++ library linker settings for my Xilinx SDK project. Does anyone know which libraries i need to set to use c++?
Kind regards,
Bob
Hi Bob!
When you made the new new project under the Project Explorer, did you choose C++ as your language?
If you did, and you need access to setting the libraries, right click the project, under project explorer - choose "C/C++ Build Settings", then in the middle of the window under Tool Settings tab, you will see "ARM g++ linker". In there you can set any libraries you will need to include.
Knowing WHICH libraries need to be set, really depends on what libraries are required for the code you use.
--Dan
I have set up a c++ Project as standalone and I get linker Errors...
[code]
using namespace std;
#include <stdio.h>
#include <iostream>
int main(int argc, char **argv) {
tprintf ("asd");
}
[/code]
used tool chain is XILINX ARM GNU TOOLCHAIN
in libraries there is nothing in it
do I have to use the xilinx path?
C:Xilinx14.7ISE_DSEDKgnuarm
tarm-xilinx-eabilib
and what are the necessary Parameters like
-Wl,--start-group,-lxil,-lgcc,-lc,--end-Group
thanks in advance
PS: with XILINX ARM GNU TOOLCHAIN/Linux it builds without Errors but I can't run it on Hardware because it's standalone and It doesn't find any active device
I solved this Problem creating a completely new Project worked fine for me
blackout,
Glad you got you worked it out!
--Dan