You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 7, 2021. It is now read-only.
$ test -f /home/mrm/.opam/system/lib/toplevel/topfind ; echo $?
0
And the environment variable is set correctly:
$ set | grep OCAML_TOPLEVEL_PATH
OCAML_TOPLEVEL_PATH=/home/mrm/.opam/system/lib/toplevel
If you put the file into current directory and name it topfind.ml, then #use "topfind" works.
And no, just renaming topfind into topfind.ml (without copying) doesn't work. It's probably that ocaml doesn't use the environment variable correctly, due to some path-related bug.
In the interactive toplevel (
ocaml), loadingtopfindfails:The
topfindfile does exist:And the environment variable is set correctly:
If you put the file into current directory and name it
topfind.ml, then#use "topfind"works.And no, just renaming
topfindintotopfind.ml(without copying) doesn't work. It's probably thatocamldoesn't use the environment variable correctly, due to some path-related bug.