Advertisement
Guest User

Getting Emacs under Cygwin to run languages not in cygwin di

a guest
Jan 26th, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. Getting Emacs under Cygwin to run languages not in cygwin directory
  2. Situation: I am running Emacs 24.4.1 under cygwin 2.8.50, on Windows 8. I am trying to run a program environment
  3. (Eclipse-CLP) that is located in "C:\Program Files (x86)\ECLiPSe 6.1\lib\i386_nt\eclipse.exe"
  4.  
  5. Eclipse-CLP has an Emacs mode which I have installed correctly. But I am unable to invoke the prolog compiler or
  6. other tools. I get a "not found" error.
  7.  
  8. I figured out that the slashes in Windows path names need to be escaped with another back slash. The
  9. appropriate line in eclipse.el file looks like:
  10.  
  11. "C:\\Program Files (x86)\\ECLiPSe 6.1\\lib\\i386_nt\\"
  12.  
  13. and the "run eclipse" command is set to "eclipse.exe"
  14. My Emacs error message reads:
  15. "Searching for program: No such file or directory, C:\Program Files (x86)\ECLiPSe 6.1\lib\i386_nt\eclipse.exe"
  16.  
  17. But this is the exact directory I see when I go to the program location in Windows.
  18.  
  19. Prior to posting this, I have already tried using: windows-path.el and cygwin-mount.el, without much success.
  20.  
  21. Any advice on what to try next?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement