2

Has somebody installed OBD-II simulator on mac? I tried downloading it from this site - http://icculus.org/obdgpslogger/obdsim.html for OS-X.

After installation and opening ObdGPSLogger, I can see GPS logger window and different parameter gauges. However, after selecting Logfile, and device there is nothing happening.

In the Raw output, below is the error displayed under StdErr:

Dyld: Library not loaded: /Users/chunky/gpsd//lib/libgps.18.dylib
 Referenced from: /Applications/OBD GPS Logger.app/Contents/Resources/bin/obdgpslogger
 Reason: image not found

Let me know if you guys know the cause

NathanOliver
  • 171,901
  • 28
  • 288
  • 402
Madhu V Swamy
  • 263
  • 2
  • 14
  • Do you have `/Users/chunky/gpsd//lib/libgps.18.dylib` on your system? If so, try `file /Users/chunky/gpsd//lib/libgps.18.dylib` to see whether it has the right type. – gaige Jan 21 '14 at 14:24
  • 1
    You should run ObdSim, it's another package inside the thing you downloaded. – Eric Smekens Jan 22 '14 at 07:31

1 Answers1

1

I had the same issue here, but I got it working on a Mac downloading the obdgpslogger-0.16.tar.gz version (in the Tarball section) from this link.

You need to navigate to the downloaded folder and then run the commands:

  • mkdir build
  • cd build
  • cmake ..
  • make
  • make install # optional
Edudjr
  • 1,676
  • 18
  • 28