From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23594 invoked from network); 9 Jul 1998 03:54:07 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 9 Jul 1998 03:54:07 -0000 Received: (from list@localhost) by math.gatech.edu (8.8.5/8.8.5) id XAA14481; Wed, 8 Jul 1998 23:40:15 -0400 (EDT) Resent-Date: Wed, 8 Jul 1998 23:40:15 -0400 (EDT) From: "Bart Schaefer" Message-Id: <980708204033.ZM11295@candle.brasslantern.com> Date: Wed, 8 Jul 1998 20:40:33 -0700 In-Reply-To: <81A7201D5B93D1119DE900805F19E19923B6B8@xch-sbc-02> Comments: In reply to "Pedroja, Daniel A" "Strange occurrence" (Jul 8, 3:48pm) References: <81A7201D5B93D1119DE900805F19E19923B6B8@xch-sbc-02> X-Mailer: Z-Mail Lite (5.0.0 30July97) To: "'zsh-workers@math.gatech.edu'" , "Pedroja, Daniel A" Subject: Re: Strange occurrence MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Resent-Message-ID: <"bua841.0.CY3.Vk3fr"@math> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/4219 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu On Jul 8, 3:48pm, Pedroja, Daniel A wrote: > IF I open a Terminal window and run an external command (make is a good > example), the command will terminate with a segmenation fault. However, > if in the same Terminal window, I rlogin to the same host and run the > command, it executes correctly. This is a classic shared library failure. Chances are that your login shell is setting LD_LIBRARY_PATH or otherwise initializing the shared library search locations, but that the init file (e.g. ~/.zlogin) that performs this task is not being executed when you start other shells. It's best to move such initialization code to ~/.zshenv, which is executed by every zsh that you start.