Lisp HUG Maillist Archive

delivery on Mac

I'm attempting to learn how to deliver my application using LispWorks  
Professional 5.1.2 on  Mac OS X 10.5.7. I have almost zero experience  
with Unix and the Terminal application.

In following the instructions in section 2.2 of the Delivery Manual,  
which reads

> On Mac OS X, use Terminal.app. Ensure you're in the directory of the  
> image first:
>
> % cd "/Applications/LispWorks 5.1/LispWorks.app/Contents/MacOS"
> % lispworks-5-1-0-macos-universal -build deliver.lisp


I get

> BAKER-FIVE-SEVENTY-FOUR:~ lw$ cd "/Applications/LispWorks 5.1/ 
> LispWorks.app/Contents/Macos"
> BAKER-FIVE-SEVENTY-FOUR:Macos lw$ lispworks-5-1-0-macos-universal - 
> build script.lisp
> -bash: lispworks-5-1-0-macos-universal: command not found
> BAKER-FIVE-SEVENTY-FOUR:Macos lw$ lispworks-5-1-2-macos-universal - 
> build script.lisp
> -bash: lispworks-5-1-2-macos-universal: command not found

The deliver script is in a file named script.lisp, following the  
instructions in section 12.2.

So, clues please. Am I getting the directory right? Is there a typo I  
don't see? Is there some other name for the command?

Also, I don't think the manual says, but where should the delivery  
script be placed?

Thanks for your help.

Laughing Water


Re: delivery on Mac

You need to put a backslash before the space character of the "LispWorks
5.1" Folder (and every space character in the path, if there is others)

For instance

/Applications/Lispworks\
5.0/LispWorks.app/Contents/MacOS/lispworks-5-0-0-macos-universal -siteinit -
-multiprocessing true -init
/users/dp/desktop/MyApplication/Sources/deliver.lisp

Denis

Le 3/07/09 18:06, « [NOM] » <[ADRESSE]> a écrit :

> 
> I'm attempting to learn how to deliver my application using LispWorks
> Professional 5.1.2 on  Mac OS X 10.5.7. I have almost zero experience
> with Unix and the Terminal application.
> 
> In following the instructions in section 2.2 of the Delivery Manual,
> which reads
> 
>> On Mac OS X, use Terminal.app. Ensure you're in the directory of the
>> image first:
>> 
>> % cd "/Applications/LispWorks 5.1/LispWorks.app/Contents/MacOS"
>> % lispworks-5-1-0-macos-universal -build deliver.lisp
> 
> 
> I get
> 
>> BAKER-FIVE-SEVENTY-FOUR:~ lw$ cd "/Applications/LispWorks 5.1/
>> LispWorks.app/Contents/Macos"
>> BAKER-FIVE-SEVENTY-FOUR:Macos lw$ lispworks-5-1-0-macos-universal -
>> build script.lisp
>> -bash: lispworks-5-1-0-macos-universal: command not found
>> BAKER-FIVE-SEVENTY-FOUR:Macos lw$ lispworks-5-1-2-macos-universal -
>> build script.lisp
>> -bash: lispworks-5-1-2-macos-universal: command not found
> 
> The deliver script is in a file named script.lisp, following the
> instructions in section 12.2.
> 
> So, clues please. Am I getting the directory right? Is there a typo I
> don't see? Is there some other name for the command?
> 
> Also, I don't think the manual says, but where should the delivery
> script be placed?
> 
> Thanks for your help.
> 
> Laughing Water
> 

-------------------------------------------------------
Denis Pousseur
70 rue de Wansijn
1180 Bruxelles, Belgique

Tel : 32 (0)2 219 31 09
Mail :  denis.pousseur@gmail.com
-------------------------------------------------------



Re: delivery on Mac

PS : for me, the "Application Builder" Tools is really easier than the
Terminal


Le 3/07/09 18:06, « [NOM] » <[ADRESSE]> a écrit :

> 
> I'm attempting to learn how to deliver my application using LispWorks
> Professional 5.1.2 on  Mac OS X 10.5.7. I have almost zero experience
> with Unix and the Terminal application.
> 
> In following the instructions in section 2.2 of the Delivery Manual,
> which reads
> 
>> On Mac OS X, use Terminal.app. Ensure you're in the directory of the
>> image first:
>> 
>> % cd "/Applications/LispWorks 5.1/LispWorks.app/Contents/MacOS"
>> % lispworks-5-1-0-macos-universal -build deliver.lisp
> 
> 
> I get
> 
>> BAKER-FIVE-SEVENTY-FOUR:~ lw$ cd "/Applications/LispWorks 5.1/
>> LispWorks.app/Contents/Macos"
>> BAKER-FIVE-SEVENTY-FOUR:Macos lw$ lispworks-5-1-0-macos-universal -
>> build script.lisp
>> -bash: lispworks-5-1-0-macos-universal: command not found
>> BAKER-FIVE-SEVENTY-FOUR:Macos lw$ lispworks-5-1-2-macos-universal -
>> build script.lisp
>> -bash: lispworks-5-1-2-macos-universal: command not found
> 
> The deliver script is in a file named script.lisp, following the
> instructions in section 12.2.
> 
> So, clues please. Am I getting the directory right? Is there a typo I
> don't see? Is there some other name for the command?
> 
> Also, I don't think the manual says, but where should the delivery
> script be placed?
> 
> Thanks for your help.
> 
> Laughing Water
> 

-------------------------------------------------------
Denis Pousseur
70 rue de Wansijn
1180 Bruxelles, Belgique

Tel : 32 (0)2 219 31 09
Mail :  denis.pousseur@gmail.com
-------------------------------------------------------



Re: delivery on Mac

Hello Laughing Water,

It looks like you cd'd to the wong directory. Here is an example shell script from my own Mac OS X builds:

pushd /Applications/LispWorks\ 5.1/LispWorks.app/Contents/MacOS
./Lispworks-5-1-0-macos-universal -init ~/projects/lispworks/Godzilla/deliver.lisp
popd


Dr. David McClain
Chief Technical Officer
Refined Audiometrics Laboratory
4391 N. Camino Ferreo
Tucson, AZ  85750

email: dbm@refined-audiometrics.com
phone: 1.520.390.3995
web: http://www.refined-audiometrics.com



On Jul 3, 2009, at 09:06, Laughing Water wrote:


I'm attempting to learn how to deliver my application using LispWorks Professional 5.1.2 on  Mac OS X 10.5.7. I have almost zero experience with Unix and the Terminal application.

In following the instructions in section 2.2 of the Delivery Manual, which reads

On Mac OS X, use Terminal.app. Ensure you're in the directory of the image first:

% cd "/Applications/LispWorks 5.1/LispWorks.app/Contents/MacOS"
% lispworks-5-1-0-macos-universal -build deliver.lisp


I get

BAKER-FIVE-SEVENTY-FOUR:~ lw$ cd "/Applications/LispWorks 5.1/LispWorks.app/Contents/Macos"
BAKER-FIVE-SEVENTY-FOUR:Macos lw$ lispworks-5-1-0-macos-universal -build script.lisp
-bash: lispworks-5-1-0-macos-universal: command not found
BAKER-FIVE-SEVENTY-FOUR:Macos lw$ lispworks-5-1-2-macos-universal -build script.lisp
-bash: lispworks-5-1-2-macos-universal: command not found

The deliver script is in a file named script.lisp, following the instructions in section 12.2.

So, clues please. Am I getting the directory right? Is there a typo I don't see? Is there some other name for the command?

Also, I don't think the manual says, but where should the delivery script be placed?

Thanks for your help.

Laughing Water



Re: delivery on Mac

Unable to parse email body. Email id is 9312

Re: delivery on Mac

Unable to parse email body. Email id is 9313

Updated at: 2020-12-10 08:40 UTC