ASDF 3 on WIn 10 doesn't find component
This is with LW 7.1.1 and Win 10.
I don't know how to get ASDF to find a file. My environment variable %LOCALAPPDATA% is C:\Users\Mitch\AppData\Local
I have the files test.asd and test.lisp in c:\Users\Mitch\AppData\Local\common-lisp\test.asd
;;; test.asd --------------------------------
(defsystem "test"
:components ((:file "test")))
;;; --------------------------------------------
(defpackage :test
(:use :common-lisp))
(in-package :test)
(defconstant *golden-ratio* 1.6180339887)
;;; --------------------------------------------
In LW, I do:
CL-USER 1 > (require "asdf")
CL-USER 2 > (asdf:load-system "test")
and get:
Error: Component "test" not found
Thanks for any advice.
Mitch