Mail Archives: cygwin/1997/08/06/22:45:33
This is a multi-part message in MIME format.
------=_NextPart_000_0000_01BCA2C7.4E1C4B40
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit
The attached batch file setcygnu.bat is an example to set the necessary
variable and call bash.exe. The other file .bash_profile is needed to be put
in you home directory ( //D/MYDOCU~1/WEI/HOME in my case).
You need to adjust the property of the batch file such that it allocate
enough initial environment memory ( 768 in my case ) so that the set command
won't cause 'out of environment variable space' error.
Hope this help.
Sincerely,
Wei Ku
***************************************
Department of Physics and Astronomy
The University of Tennessee
1408 Circle Drive
Knoxville, Tennessee 37996-1200
weiku AT utkux DOT utcc DOT utk DOT edu
---------------------------------------
Solid State Division
Oak Ridge National Laboratory
P.O.Box 2008
Oak Ridge, TN 37831-6032
Phone: (423) 574-5795
Fax: (423) 574-4143
weiku AT solid DOT ssd DOT ornl DOT gov
***************************************
-----Original Message-----
From: Toby Gebhart <gebhart AT informatics DOT net>
To: gnu-win32 AT cygnus DOT com <gnu-win32 AT cygnus DOT com>
Date: Wednesday, August 06, 1997 11:55 PM
Subject: RE: No readme included in b18
>
>I noticed the same, but I found a readme.txt file with the needed variables
in it, I'm just not sure how to incorporate them. I'm using Win95, so I
thought that maybe I would just add the strings in the autoexec.bat in the
following format:
>GCC_EXEC_PREFIX=C:\gnuwin32\b18\H-i386-cygwin32\lib\gcc-lib\
>Obviously, this didn't work. Where exactly do I put the environment
variables? I wish it was more clear, or maybe I'm missing the boat
entirely...... I'm new to the list, please don't flame me away with "We've
already answered this question 5 million times!".
>
>Toby Gebhart
>mailto:gebhart AT informatics DOT net
>-----Original Message-----
>From: Gregory Goodwin [SMTP:gm-goodwin AT worldnet DOT att DOT net]
>Sent: Tuesday, August 05, 1997 8:34 PM
>To: gnu-win32 AT cygnus DOT com
>Subject: No readme included in b18
>
>I just downloaded/installed the full binary installation of build 18 for
>Win95. The install program mentioned that I would need to view the readme
>to set up the environment. However, the readme was not installed. Nor was
>there a copy of the License Agreement.
>
>Thought you should know.
>
>Regards,
>Greg
>-
>For help on using this list (especially unsubscribing), send a message to
>"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
>-
>For help on using this list (especially unsubscribing), send a message to
>"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
>
------=_NextPart_000_0000_01BCA2C7.4E1C4B40
Content-Type: application/octet-stream;
name="setcygnu.bat"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="setcygnu.bat"
set GCC_EXEC_PREFIX=3DE:\gnuwin32\b18\H-i386-cygwin32\lib\gcc-lib\
set TCL_LIBRARY=3DC:/gnuwin32/b18/tcl/lib/tcl7.6
set GDBTK_LIBRARY=3DC:/gnuwin32/b18/share/gdbtcl
set =
PATH=3De:\gnuwin32\b18\H-i386-cygwin32\bin;E:\gnuwin32\b18\tcl\bin;E:\gnu=
win32\b18\usr\local\bin;E:\gnuwin32\b18\usr\X11R6.3\bin;e:\mydocu~1\wei\h=
ome\bin;e:\mydocu~1\wei\home\lapw;%PATH%
set LIBRARY_PATH=3DE:\Cygnus\b18\H-i386-cygwin32\lib
set MAN_PATH=3DE:\Cygnus\man
set C_INCLUDE_PATH=3DE:\Cygnus\include
set CPLUS_INCLUDE_PATH=3DE:\Cygnus\include\g++
set HOME=3D//D/MYDOCU~1/WEI/HOME
set DISPLAY=3Dlocalhost:0.0
E:\gnuwin32\b18\H-i386-cygwin32\bin\bash.201.Sergey.exe -login
rem E:\gnuwin32\b18\H-i386-cygwin32\bin\bash.201.exe -login
rem E:\gnuwin32\b18\H-i386-cygwin32\bin\bash.200.exe -login
rem E:\gnuwin32\b18\H-i386-cygwin32\bin\bash.exe -login
------=_NextPart_000_0000_01BCA2C7.4E1C4B40
Content-Type: application/octet-stream;
name=".bash_profile"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename=".bash_profile"
# ~/.bashrc --- this is an example =0A=
=0A=
# Limit coredumps to zero bytes=0A=
ulimit -c 0=0A=
=0A=
#----------------------------------------------------------------------=0A=
# Other settings=0A=
umask 022=0A=
=0A=
export HOME=3D/usr/weiku=0A=
export =
PATH=3D.:/H-i386~1/bin:/tcl/bin:/usr/local/bin:/usr/X11r6.3/bin://D/MYDOC=
U~1/WEI/HOME/bin://D/MYDOCU~1/WEI/HOME/lapw://C/WINDOWS://C/WINDOWS/COMMA=
ND://C/WINDOWS/SYSTEM://C/TOOLS=0A=
export TMOUT=3D3600=0A=
export HISTCONTROL=3Dignoredups=0A=
export FIGNORE=3D'~:.o'=0A=
export PS1=3D'//\h/.../\W \$ '=0A=
#export MAN_PATH=3D/man=0A=
export TERM=3Dlinux=0A=
=0A=
#insert key=0A=
#effect clipboard=0A=
bind '"\e[2~":paste-from-clipboard'=0A=
#bind '"\C-v":paste-from-clipboard'=0A=
=0A=
# home key=0A=
bind '"\e[1~":beginning-of-line'=0A=
=0A=
# del key=0A=
bind '"\e[3~":delete-char'=0A=
=0A=
# end key=0A=
bind '"\e[4~":end-of-line'=0A=
=0A=
# pgup key=0A=
bind '"\e[5~":history-search-forward'=0A=
=0A=
# pgdn key=0A=
bind '"\e[6~":history-search-backward'=0A=
=0A=
alias cp=3D'cp -r'=0A=
alias rm=3D'rm -r'=0A=
alias ls=3D'ls -F'=0A=
alias dir=3D'ls -laF'=0A=
alias edit=3D'notepad'=0A=
alias books=3D'telnet opac.lib.utk.edu'=0A=
=0A=
#g() { tex $1 ; dvips -o $1.ps $1.dvi ; gsview32 $1.ps }=0A=
=0A=
#----------------------------------------------------------------------=0A=
# end of ~/.bashrc =0A=
------=_NextPart_000_0000_01BCA2C7.4E1C4B40--
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -