DRAMSim2 icon indicating copy to clipboard operation
DRAMSim2 copied to clipboard

How to integrate DRAMSim2 with Eclipse IDE

Open sid392 opened this issue 10 years ago • 1 comments

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

sid392 avatar Oct 06 '14 17:10 sid392

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...

dramninjasUMD avatar Oct 07 '14 14:10 dramninjasUMD