]> gitweb.factorcode.org Git - factor.git/commitdiff
debugger: Try to be more helpful if linux libraries are not installed. Fixes #774.
authorDoug Coleman <doug.coleman@gmail.com>
Fri, 29 Mar 2013 17:35:51 +0000 (10:35 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Fri, 29 Mar 2013 17:36:31 +0000 (10:36 -0700)
basis/debugger/debugger.factor

index 03852015e7e92fcd127aaf63157de19c765316a5..fd375650dc0963c4d96b818f808c0940c89e7a16 100755 (executable)
@@ -111,7 +111,9 @@ HOOK: signal-error. os ( obj -- )
 : undefined-symbol-error. ( obj -- )
     "Cannot resolve C library function" print
     "Symbol: " write dup third symbol>string print
-    "Library: " write fourth . ;
+    "Library: " write fourth .
+    "You are probably missing a library or the library path is wrong." .
+    "See http://concatenative.org/wiki/view/Factor/Requirements" . ;
 
 : stack-underflow. ( obj name -- )
     write " stack underflow" print drop ;