DRAMSim2
DRAMSim2 copied to clipboard
How to integrate DRAMSim2 with Eclipse IDE
I am using Eclipse IDE. i want to integrate DRAMSim2 with it. Please can you give me build settings in Eclipes IDE:
I am getting the following error: /home/user/DRAMSim2/example_app/dramsim_test: error while loading shared libraries: libdramsim.so: cannot open shared object file: No such file or directory
This error is the result of not setting LD_LIBRARY_PATH (or some other way to establish the loader path). I think if you just run this command before starting eclipse:
export LD_LIBRARY_PATH=/home/user/DRAMSim2:$LD_LIBRARY_PATH
(assuming your libdramsim.so is in /home/user/DRAMSim2
)
It should work...