[asdf-devel] How to have fasls go to a fasl directory under the source directory?

2010-10-17 Thread Mitch Berkson
Is there a general way to have the fasls for files in a source directory 
default to being written to a fasl subdirectory of the source directory?

So if I have the source in d:/lisp/lw-add-ons, I'd like the fasls to be 
written to d:/lisp/lw-add-ons. I have done this by adding a 
d:/lisp/.config/common-lisp/asdf-output-translations.conf.d/lw-add-ons-asdf.conf
 
file containing:(d:/lisp/lw-add-ons/ d:/lisp/lw-add-ons/fasl/)

But is there a way to make this the default behavior so that 
d:/lisp/other-system/ will have their fasls written to 
d:/lisp/other-system/fasl?

Alternatively, could they be written to a central fasl directory but in 
a sub-directory named for the package? So d:/lisp/fasl/other-system/?

This is on Win XP. Thanks for any help.

Mitch Berkson

___
asdf-devel mailing list
asdf-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel


[asdf-devel] Error writing some output translation

2010-10-17 Thread Mitch Berkson
I am encountering the error below when trying to load-system from 
directory d:/foo/:

Error: Failed to MAKE-DIRECTORY file C:\Documents and 
Settings\mitch\Application 
Data\common-lisp\cache\lispworks-6.0.1-windows-x86\d\foo\d:\: The 
filename, directory name, or volume label syntax is incorrect.(123).

I am able to load-system systems I have downloaded (e.g., lw-add-ons, 
cl-pdf) which are in a different directory (d:/lisp/). I have fooled 
around with a .conf file in the 
d:/foo/.config/common-lisp/asdf-output-translations.conf.d/ directory 
but that hasn't helped.

I'd appreciate any suggestions.

Mitch Berkson

___
asdf-devel mailing list
asdf-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel


Re: [asdf-devel] Error writing some output translation

2010-10-17 Thread Faré
Which version of Lispworks are you using? (asdf:asdf-version)
Can you (trace asdf::apply-output-translations
asdf::translate-pathname* asdf::merge-pathnames*) ?

[ François-René ÐVB Rideau | ReflectionCybernethics | http://fare.tunes.org ]
Be wiser than other people if you can; but do not tell them so. — Chesterfield




On 17 October 2010 19:17, Mitch Berkson mi...@bermita.com wrote:
 I am encountering the error below when trying to load-system from
 directory d:/foo/:

 Error: Failed to MAKE-DIRECTORY file C:\Documents and
 Settings\mitch\Application
 Data\common-lisp\cache\lispworks-6.0.1-windows-x86\d\foo\d:\: The
 filename, directory name, or volume label syntax is incorrect.(123).

 I am able to load-system systems I have downloaded (e.g., lw-add-ons,
 cl-pdf) which are in a different directory (d:/lisp/). I have fooled
 around with a .conf file in the
 d:/foo/.config/common-lisp/asdf-output-translations.conf.d/ directory
 but that hasn't helped.

 I'd appreciate any suggestions.

 Mitch Berkson


___
asdf-devel mailing list
asdf-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel


Re: [asdf-devel] Error writing some output translation

2010-10-17 Thread Mitch Berkson
  LW6.
asdf 2.009

The trace results are lengthy, but the lines before the error are:

0 ASDF:MERGE-PATHNAMES*  ...
 VALUE-0 : #Pd:/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl
0 ASDF:MERGE-PATHNAMES*  ...
  ASDF::SPECIFIED : #P**/*.*
  ASDF::DEFAULTS  : #Pd:/
0 ASDF:MERGE-PATHNAMES*  ...
 VALUE-0 : #Pd:/**/*.*
0 ASDF::TRANSLATE-PATHNAME*  ...
  ASDF::PATH: 
#Pd:/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl
  ASDF::ABSOLUTE-SOURCE : #Pd:/**/*.*
  ASDF::DESTINATION : #PC:/Documents and 
Settings/mitch/Application 
Data/common-lisp/cache/lispworks-6.0.1-windows-x86/**/*.*
  ASDF::ROOT: #Pd:/
  ASDF::SOURCE  : T
   1 ASDF:MERGE-PATHNAMES*  ...
  ASDF::SPECIFIED : #P**/*.*
  ASDF::DEFAULTS  : #Pd:/
   1 ASDF:MERGE-PATHNAMES*  ...
 VALUE-0 : #Pd:/**/*.*
   1 ASDF:MERGE-PATHNAMES*  ...
  ASDF::SPECIFIED : #Pd:/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl
  ASDF::DEFAULTS  : #Pd:/
   1 ASDF:MERGE-PATHNAMES*  ...
 VALUE-0 : #Pd:/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl
   1 ASDF:MERGE-PATHNAMES*  ...
  ASDF::SPECIFIED : #P**/*.*
  ASDF::DEFAULTS  : #Pd:/d/
   1 ASDF:MERGE-PATHNAMES*  ...
 VALUE-0 : #Pd:/d/**/*.*
0 ASDF::TRANSLATE-PATHNAME*  ...
 VALUE-0 : #PC:/Documents and Settings/mitch/Application 
Data/common-lisp/cache/lispworks-6.0.1-windows-x86/d/grouptix/d:/lisp/cl-pdf/pdf-template.ofasl

Error: Failed to MAKE-DIRECTORY file C:\Documents and 
Settings\mitch\Application 
Data\common-lisp\cache\lispworks-6.0.1-windows-x86\d\grouptix\d:\: The 
filename, directory name, or volume label syntax is incorrect.(123).
   1 (continue) Try recompiling pdf-template
   2 Retry compiling component (grouptix-sys print-templates 
pdf-template).
   3 Continue, treating compiling component (grouptix-sys 
print-templates pdf-template) as having been successful.
   4 (abort) Return to level 0.
   5 Return to top loop level 0.

Type :b for backtrace or :c option number to proceed.
Type :bug-form subject for a bug report template or :? for other 
options.



On 10/17/2010 10:27 PM, Faré wrote:
 Which version of Lispworks are you using? (asdf:asdf-version)
 Can you (trace asdf::apply-output-translations
 asdf::translate-pathname* asdf::merge-pathnames*) ?

 [ François-René ÐVB Rideau | ReflectionCybernethics | http://fare.tunes.org ]
 Be wiser than other people if you can; but do not tell them so. — Chesterfield




 On 17 October 2010 19:17, Mitch Berksonmi...@bermita.com  wrote:
 I am encountering the error below when trying to load-system from
 directory d:/foo/:

 Error: Failed to MAKE-DIRECTORY file C:\Documents and
 Settings\mitch\Application
 Data\common-lisp\cache\lispworks-6.0.1-windows-x86\d\foo\d:\: The
 filename, directory name, or volume label syntax is incorrect.(123).

 I am able to load-system systems I have downloaded (e.g., lw-add-ons,
 cl-pdf) which are in a different directory (d:/lisp/). I have fooled
 around with a .conf file in the
 d:/foo/.config/common-lisp/asdf-output-translations.conf.d/ directory
 but that hasn't helped.

 I'd appreciate any suggestions.

 Mitch Berkson



___
asdf-devel mailing list
asdf-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel