This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

make error: cannot exec gcc (after many compiles) : Win95 : Cygwin of 9/19/2001


Summary:
dllwrap: installation problem, cannot exec `gcc': No such file
or directory
dllwrap: gcc exited with status 255
make: *** [dummy] Error 1

Details:
With the new installation of CygWin, I was attempting to compile
   the new release of Ruby.  The compiles worked fine, the error
occured during the attempt at a creation of a shared library.  I
don't really understand make, but it looks relatively
straightforward.

The out.txt file has been edited to include the error message.
It didn't appear in a simply redirected output file.  Strangely
it didn't appear in a redirected stderr file either:
make > out.txt 2>err.txt
err.txt ends up blank, and out.txt doesn't include the error
message, but it appears on the screen if I don't do a redirection.

P.S.:  Is there a bugzilla or something?  This seems a bit long
to include in a post to a mailing list.

(included files:  out.txt, Makefile, cygcheck.out)
-- 
Charles Hixson

Copy software legally, the GNU way!
Use GNU software, and legally make and share copies of software.
See http://www.gnu.org
     http://www.redhat.com
     http://www.linux-mandrake.com
     http://www.calderasystems.com/
     http://www.linuxapps.com/

Out.txt:
gcc -g -O2 -I. -I. -I/usr/local/include -c array.c
gcc -g -O2 -I. -I. -I/usr/local/include -c bignum.c
gcc -g -O2 -I. -I. -I/usr/local/include -c class.c
gcc -g -O2 -I. -I. -I/usr/local/include -c compar.c
gcc -g -O2 -I. -I. -I/usr/local/include -c dir.c
gcc -g -O2 -I. -I. -I/usr/local/include -c dln.c
gcc -g -O2 -I. -I. -I/usr/local/include -c enum.c
gcc -g -O2 -I. -I. -I/usr/local/include -c error.c
gcc -g -O2 -I. -I. -I/usr/local/include -c eval.c
gcc -g -O2 -I. -I. -I/usr/local/include -c file.c
gcc -g -O2 -I. -I. -I/usr/local/include -c gc.c
gcc -g -O2 -I. -I. -I/usr/local/include -c hash.c
gcc -g -O2 -I. -I. -I/usr/local/include -c inits.c
gcc -g -O2 -I. -I. -I/usr/local/include -c io.c
gcc -g -O2 -I. -I. -I/usr/local/include -c marshal.c
gcc -g -O2 -I. -I. -I/usr/local/include -c math.c
gcc -g -O2 -I. -I. -I/usr/local/include -c numeric.c
gcc -g -O2 -I. -I. -I/usr/local/include -c object.c
gcc -g -O2 -I. -I. -I/usr/local/include -c pack.c
gcc -g -O2 -I. -I. -I/usr/local/include -c parse.c
gcc -g -O2 -I. -I. -I/usr/local/include -c process.c
gcc -g -O2 -I. -I. -I/usr/local/include -c prec.c
gcc -g -O2 -I. -I. -I/usr/local/include -c random.c
gcc -g -O2 -I. -I. -I/usr/local/include -c range.c
gcc -g -O2 -I. -I. -I/usr/local/include -c re.c
gcc -g -O2 -I. -I. -I/usr/local/include -c regex.c
gcc -g -O2 -I. -I. -I/usr/local/include -c ruby.c
gcc -g -O2 -I. -I. -I/usr/local/include -c signal.c
gcc -g -O2 -I. -I. -I/usr/local/include -c sprintf.c
gcc -g -O2 -I. -I. -I/usr/local/include -c st.c
gcc -g -O2 -I. -I. -I/usr/local/include -c string.c
gcc -g -O2 -I. -I. -I/usr/local/include -c struct.c
gcc -g -O2 -I. -I. -I/usr/local/include -c time.c
gcc -g -O2 -I. -I. -I/usr/local/include -c util.c
gcc -g -O2 -I. -I. -I/usr/local/include -c variable.c
gcc -g -O2 -I. -I. -I/usr/local/include -c version.c
gcc -I. -g -O2 -I. -I. -I/usr/local/include -c ./missing/flock.c
gcc -I. -g -O2 -I. -I. -I/usr/local/include -c ./missing/strftime.c
gcc -g -O2 -I. -I. -I/usr/local/include -c dmyext.c
ar rcu librubys.a array.o bignum.o class.o compar.o dir.o dln.o 
enum.o error.o eval.o file.o gc.o hash.o inits.o io.o marshal.o 
math.o numeric.o object.o pack.o parse.o process.o prec.o 
random.o range.o re.o regex.o ruby.o signal.o sprintf.o st.o 
string.o struct.o time.o util.o variable.o version.o flock.o 
strftime.o  dmyext.o
gcc -g -O2 -I. -I. -I/usr/local/include -c main.c
gcc -g -O2  main.o dmyext.o librubys.a -lcrypt   -o miniruby.exe
echo EXPORTS > ruby.def
nm --extern-only --defined-only librubys.a | \
   ./miniruby.exe -ne 'puts $1 if / [CDT] _(.*)$/' >> ruby.def
windres --include-dir . --include-dir . --include-dir ./win32 
dummy.rc dummy.res.o
dllwrap --target=cygwin --as=as --dlltool-name=dlltool 
--driver-name=gcc --export-all -s --output-exp=ruby.exp 
--dllname=ruby.exe --output-lib=libcygwin-ruby16.a 
--add-stdcall-alias --def=ruby.def array.o bignum.o class.o 
compar.o dir.o dln.o enum.o error.o eval.o file.o gc.o hash.o 
inits.o io.o marshal.o math.o numeric.o object.o pack.o parse.o 
process.o prec.o random.o range.o re.o regex.o ruby.o signal.o 
sprintf.o st.o string.o struct.o time.o util.o variable.o 
version.o flock.o strftime.o  dmyext.o dummy.res.o -lcrypt   -o 
dummy

dllwrap: installation problem, cannot exec `gcc': No such file 
or directory
dllwrap: gcc exited with status 255
make: *** [dummy] Error 1

==============================================================================
Makefile:
# Generated automatically from Makefile.in by configure.
SHELL = /bin/sh

#### Start of system configuration section. ####

srcdir = .
VPATH = $(srcdir):$(srcdir)/missing

CC = gcc
YACC = bison -y
PURIFY =
AUTOCONF = autoconf
MAKE=make

prefix = /usr/local
CFLAGS = -g -O2
CPPFLAGS = -I. -I$(srcdir) -I${prefix}/include
LDFLAGS =  $(CFLAGS)
XLDFLAGS =
EXTLIBS =
LIBS = -lcrypt  $(EXTLIBS)
MISSING =  flock.o strftime.o
LDSHARED = dllwrap --target=cygwin --as=as 
--dlltool-name=dlltool --driver-name=gcc --export-all -s
DLDFLAGS = --output-exp=$(RUBY_INSTALL_NAME).exp 
--dllname=$(RUBY_INSTALL_NAME)$(EXEEXT) --output-lib=$(LIBRUBY) 
--add-stdcall-alias --def=$(RUBYDEF)
SOLIBS = $(LIBS)
MAINLIBS =

RUBY_INSTALL_NAME=ruby
RUBY_SO_NAME=cygwin-$(RUBY_INSTALL_NAME)16
EXEEXT = .exe
PROGRAM=$(RUBY_INSTALL_NAME)$(EXEEXT)

#### End of system configuration section. ####

MAJOR= 
1
MINOR= 
6
TEENY= 
5

LIBRUBY_A     = lib$(RUBY_INSTALL_NAME)s.a
LIBRUBY_SO    = dummy
LIBRUBY_ALIASES=
LIBRUBY 
       = lib$(RUBY_SO_NAME).a
LIBRUBYARG    = -L. -l$(RUBY_SO_NAME)

EXTOBJS 
       =

MAINOBJ 
       = main.o

OBJS 
       = array.o \
		bignum.o \
		class.o \
		compar.o \
		dir.o \
		dln.o \
		enum.o \
		error.o \
		eval.o \
		file.o \
		gc.o \
		hash.o \
		inits.o \
		io.o \
		marshal.o \
		math.o \
		numeric.o \
		object.o \
		pack.o \
		parse.o \
		process.o \
		prec.o \
		random.o \
		range.o \
		re.o \
		regex.o \
		ruby.o \
		signal.o \
		sprintf.o \
		st.o \
		string.o \
		struct.o \
		time.o \
		util.o \
		variable.o \
		version.o \
		$(MISSING)

all: 
	miniruby$(EXEEXT)  rbconfig.rb $(LIBRUBY)
		@./miniruby$(EXEEXT) -Cext extmk.rb

miniruby$(EXEEXT): 
config.status $(LIBRUBY_A) $(MAINOBJ) dmyext.o
		@rm -f $@
		$(PURIFY) $(CC) $(LDFLAGS) $(MAINOBJ) dmyext.o $(LIBRUBY_A) 
$(LIBS) -o $@

$(PROGRAM):     $(LIBRUBY) $(MAINOBJ) $(EXTOBJS)
		@rm -f $@
		$(PURIFY) $(CC) $(LDFLAGS) $(XLDFLAGS) $(MAINLIBS) $(MAINOBJ) 
$(EXTOBJS) $(LIBRUBYARG) $(LIBS) -o $@

$(LIBRUBY_A): 
$(OBJS) dmyext.o
		ar rcu $@ $(OBJS) dmyext.o
		@-ranlib $@ 2> /dev/null || true

$(LIBRUBY_SO): 
$(OBJS) dmyext.o miniruby$(EXEEXT)
		$(LDSHARED) $(DLDFLAGS) $(OBJS) dmyext.o $(SOLIBS) -o $@
		@-./miniruby$(EXEEXT) -e 'ARGV.each{|link| File.delete link if 
File.exist? link; \
						  File.symlink "$(LIBRUBY_SO)", link}' \
				$(LIBRUBY_ALIASES) || true

install: 
rbconfig.rb
		./miniruby$(EXEEXT) $(srcdir)/instruby.rb $(DESTDIR)

clean:; 
	@rm -f $(OBJS) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY_ALIASES) 
$(MAINOBJ) rbconfig.rb
		@rm -f ext/extinit.c ext/extinit.o dmyext.o
		@-./miniruby$(EXEEXT) -Cext extmk.rb clean 2> /dev/null || true
		@rm -f $(PROGRAM) miniruby$(EXEEXT)

distclean: 
clean
		@rm -f Makefile ext/extmk.rb config.h
		@rm -f ext/config.cache config.cache config.log config.status
		@rm -f *~ core *.core gmon.out y.tab.c y.output ruby.imp

realclean: 
distclean
		@rm -f parse.c
		@rm -f lex.c

test: 
	miniruby$(EXEEXT) rbconfig.rb
		@./miniruby$(EXEEXT) $(srcdir)/rubytest.rb

rbconfig.rb: 
miniruby$(EXEEXT) $(srcdir)/mkconfig.rb config.status
		@./miniruby$(EXEEXT) $(srcdir)/mkconfig.rb rbconfig.rb

fake.rb: 
miniruby$(EXEEXT)
		@echo ' \
		class Object; \
		  remove_const :RUBY_PLATFORM; \
		  RUBY_PLATFORM = "i686-cygwin"; \
		  if defined? PLATFORM; \
		    remove_const :PLATFORM; \
		    PLATFORM = "i686-cygwin"; \
		  end; \
		  CROSS_COMPILING = true; \
		end \
		' > $@

config.status: 
$(srcdir)/configure
		$(SHELL) ./config.status --recheck

$(srcdir)/configure: $(srcdir)/configure.in
		cd $(srcdir) && $(AUTOCONF)

.c.o:
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $<

lex.c: keywords
	gperf -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ 
$(srcdir)/keywords > lex.c

parse.c: parse.y
	$(YACC) $<
	mv -f y.tab.c parse.c

parse.o: parse.c

alloca.o: $(srcdir)/missing/alloca.c
	$(CC) -I. $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/alloca.c

crypt.o: $(srcdir)/missing/crypt.c
	$(CC) -I. $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/crypt.c

dup2.o: $(srcdir)/missing/dup2.c
	$(CC) -I. $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/dup2.c

finite.o: $(srcdir)/missing/finite.c
	$(CC) -I. $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/finite.c

flock.o: $(srcdir)/missing/flock.c
	$(CC) -I. $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/flock.c

isinf.o: $(srcdir)/missing/isinf.c
	$(CC) -I. $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/isinf.c

isnan.o: $(srcdir)/missing/isnan.c
	$(CC) -I. $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/isnan.c

fnmatch.o: $(srcdir)/missing/fnmatch.c
	$(CC) -I. $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/fnmatch.c

memcmp.o: $(srcdir)/missing/memcmp.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/memcmp.c

memmove.o: $(srcdir)/missing/memmove.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/memmove.c

mkdir.o: $(srcdir)/missing/mkdir.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/mkdir.c

vsnprintf.o: $(srcdir)/missing/vsnprintf.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/vsnprintf.c

strcasecmp.o: $(srcdir)/missing/strcasecmp.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/strcasecmp.c

strncasecmp.o: $(srcdir)/missing/strncasecmp.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/strncasecmp.c

strchr.o: $(srcdir)/missing/strchr.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/strchr.c

strerror.o: $(srcdir)/missing/strerror.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/strerror.c

strftime.o: $(srcdir)/missing/strftime.c
	$(CC) -I. $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/strftime.c

strstr.o: $(srcdir)/missing/strstr.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/strstr.c

strtod.o: $(srcdir)/missing/strtod.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/strtod.c

strtol.o: $(srcdir)/missing/strtol.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/strtol.c

strtoul.o: $(srcdir)/missing/strtoul.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/strtoul.c

x68.o: $(srcdir)/missing/x68.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/x68.c

os2.o: $(srcdir)/missing/os2.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/os2.c

dl_os2.o: $(srcdir)/missing/dl_os2.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -c $(srcdir)/missing/dl_os2.c

win32.o: $(srcdir)/win32/win32.c
	$(CC) $(CFLAGS) $(CPPFLAGS) -I$(srcdir)/missing -c 
$(srcdir)/win32/win32.c

# Prevent GNU make v3 from overflowing arg limit on SysV.
.NOEXPORT:
###
parse.o: parse.y ruby.h config.h defines.h intern.h env.h node.h 
st.h regex.h util.h lex.c
###
array.o: array.c ruby.h config.h defines.h intern.h util.h st.h
bignum.o: bignum.c ruby.h config.h defines.h intern.h
class.o: class.c ruby.h config.h defines.h intern.h rubysig.h 
node.h st.h
compar.o: compar.c ruby.h config.h defines.h intern.h
dir.o: dir.c ruby.h config.h defines.h intern.h
dln.o: dln.c config.h defines.h dln.h
dmyext.o: dmyext.c
enum.o: enum.c ruby.h config.h defines.h intern.h node.h
error.o: error.c ruby.h config.h defines.h intern.h env.h version.h
eval.o: eval.c ruby.h config.h defines.h intern.h node.h env.h 
rubysig.h st.h dln.h
file.o: file.c ruby.h config.h defines.h intern.h rubyio.h 
rubysig.h dln.h
gc.o: gc.c ruby.h config.h defines.h intern.h rubysig.h st.h 
node.h env.h re.h regex.h
hash.o: hash.c ruby.h config.h defines.h intern.h st.h rubysig.h 
util.h
inits.o: inits.c ruby.h config.h defines.h intern.h
io.o: io.c ruby.h config.h defines.h intern.h rubyio.h rubysig.h 
env.h util.h
main.o: main.c ruby.h config.h defines.h intern.h
marshal.o: marshal.c ruby.h config.h defines.h intern.h rubyio.h 
st.h
prec.o: prec.c ruby.h config.h defines.h intern.h
math.o: math.c ruby.h config.h defines.h intern.h
numeric.o: numeric.c ruby.h config.h defines.h intern.h
object.o: object.c ruby.h config.h defines.h intern.h st.h
pack.o: pack.c ruby.h config.h defines.h intern.h
process.o: process.c ruby.h config.h defines.h intern.h 
rubysig.h st.h
random.o: random.c ruby.h config.h defines.h intern.h
range.o: range.c ruby.h config.h defines.h intern.h
re.o: re.c ruby.h config.h defines.h intern.h re.h regex.h
regex.o: regex.c config.h regex.h
ruby.o: ruby.c ruby.h config.h defines.h intern.h dln.h node.h 
util.h
signal.o: signal.c ruby.h config.h defines.h intern.h rubysig.h
sprintf.o: sprintf.c ruby.h config.h defines.h intern.h
st.o: st.c config.h st.h
string.o: string.c ruby.h config.h defines.h intern.h re.h regex.h
struct.o: struct.c ruby.h config.h defines.h intern.h
time.o: time.c ruby.h config.h defines.h intern.h
util.o: util.c ruby.h config.h defines.h intern.h util.h
variable.o: variable.c ruby.h config.h defines.h intern.h env.h 
node.h st.h
version.o: version.c ruby.h config.h defines.h intern.h version.h

==============================================================================
cygcheck.out:

Cygnus Win95/NT Configuration Diagnostics
Current System Time: Thu Sep 20 11:13:08 2001

Win95 Ver 4.0 build 67306684  B

Path: 
/usr/X11R6/bin:/usr/local/kde1/bin:/usr/local/lib/qt1/bin:/usr/local/src/se/bin
	/usr/local/src/SmallEiffelPlus/bin
	/usr/local/bin:/usr/bin:/bin:/cygdrive/c/RUBY/BIN:/cygdrive/c/F/BIN:/cygdrive/c/ELJ-WIN32/SMALLEIFFEL/BIN:/cygdrive/c/ELJ-WIN32/LCC/BIN:/cygdrive/c/GNAT/BIN:/cygdrive/c/GTKADA-1.3.10/BIN:/cygdrive/c/NOVELL/CLIENT32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/COMMAND:/cygdrive/c/PROGRA~1/ULTRAE~1:/cygdrive/c/BORLAND/DELPHI5/BIN:/cygdrive/c/BORLAND/DELPHI5/PROJECTS/BPL:/cygdrive/c/BIN:/cygdrive/c/USR:/cygdrive/c/USR/LOCAL:/cygdrive/y/PUBLIC/SCRIPTS:/cygdrive/z/PUBLIC:/cygdrive/c/USR/LOCAL/WBIN:/cygdrive/c/FW:/cygdrive/c/PROGRA~1/BORLAND/CBUILD~1/BIN:/cygdrive/c/VIM:/cygdrive/c/VIM/VIM57:/cygdrive/c/ADABAS/BIN:/cygdrive/c/BORLAND/CBUILD~1/BIN:/cygdrive/c/F/GCC-2.95.2/BIN

SysDir: C:\WINDOWS\SYSTEM
WinDir: C:\WINDOWS

PWD = `/usr/local/src/ruby-1.6.5'
USER = `chixso'
TCL_LIBRARY = `c:\ruby\tcl\lib\tcl8.3'
MAKE_MODE = `unix'
HOME = `/home/chixso'

PROMPT = `$p$g'
DBROOT = `C:\Adabas'
BLACKADDERDIR = `c:\Program Files\BlackAdder\'
TZ = `PST8PDT'
GOBO = `c:\elj-win32\epan\gobo'
COMSPEC = `C:\COMMAND.COM'
!C: = `C:\cygwin\bin'
DBWORK = `C:\Adabas\sql'
NWLANGUAGE = `ENGLISH'
CMDLINE = `bash --login -i'
HOSTNAME = `CHIXSO'
EPOSIX = `C:\ELJ-WIN32\lib\ePosix'
CAMLLIB = `c:\ocaml\lib'
SMALLEIFFEL = `c:\elj-win32\SmallEiffel\sys\system.se'
BCCDIR = `C:\borland\cbuild~2\bin'
CLASSPATH = `.\;C:\Oberon\obn3.zip;C:\Oberon;'
WINDIR = `C:\WINDOWS'
WINBOOTDIR = `C:\WINDOWS'
PS1 = `]0;\w
\u@\h \w
$ '
SmallEiffelPlus = `/usr/local/src/SmallEiffelPlus/sys/system.se'
to_seplus = `/usr/local/src/SmallEiffelPlus'
KDEDIR = `/usr/local/kde1'
MACHTYPE = `i686-pc-cygwin'
KOMODO_CHROMEDIR = `C:\Program 
Files\Komodo\Mozilla\chrome\packages\komodo\komodo\'
OLDPWD = `/usr/local/src'
TEMP = `/cygdrive/c/temp'
SHIVA = `C:\Shiva'
to_se = `/usr/local/src/se'
!J: = `J:\PROGRAMS\winstall'
WINDOWS_LOGIN = `0'
SHLVL = `1'
WXWIN = `C:\WX'
DIRCMD = `/p/o:gn/4'
!Y: = `Y:\public\scripts'
SEDIR = `C:\ELJ-Win32\SmallEiffel'
RUBY_TCL_DLL = `c:\ruby\tcl\bin\tcl83.dll'
!Z: = `Z:\public'
USERNAME = `chixso'
SHELL = `/bin/bash'
HOSTTYPE = `i686'
RUBY_TK_DLL = `c:\ruby\tcl\bin\tk83.dll'
OSTYPE = `cygwin'
DBCONFIG = `C:\Adabas\sql'
TERM = `cygwin'
VIM = `C:\VIM'
SmallEiffel = `/usr/local/src/se/sys/system.se'
_ = `/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
   (default) = `/cygdrive'
   cygdrive flags = 0x00000022
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2\/
   (default) = `C:\cygwin'
   flags = 0x00000002
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts 
v2\/usr/bin
   (default) = `C:/cygwin/bin'
   flags = 0x00000002
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts 
v2\/usr/lib
   (default) = `C:/cygwin/lib'
   flags = 0x00000002
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\00
   (default) = `C:'
   unix = `/'
   fbinary = 0x00000000
   fsilent = 0x00000000
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Installed 
Components
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Installed 
Components\C:/cygwin
   (default) = `20000517'
   bash = `0002.0004.0001'
   binutils = `19990818.0001'
   bison = `0000'
   byacc = `0000'
   bzip = `0000'
   clear = `0001.0000'
   cygwin = `0001.0001.0002'
   dejagnu = `0000'
   diff = `0000'
   expect = `0000'
   fileutils = `0000'
   findutils = `0000'
   flex = `0000'
   gawk = `0000'
   gcc = `0002.0095.0002.0001'
   gdb = `20000610'
   gperf = `0000'
   grep = `0000'
   groff = `0001.011a.0001'
   gzip = `0000'
   inetutils = `0001.0003.0002.0002'
   less = `0000'
   libpng = `0001.0000.0006.0001'
   login = `0001.0002'
   m = `0000'
   make = `0003.0079.0001'
   man = `0001.005g.0002'
   patch = `0000'
   sed = `0003.0002.0001'
   shellutils = `0000'
   tar = `0000'
   tcltk = `20000610'
   termcap = `0002'
   texinfo = `0000'
   textutils = `0000'
   time = `0000'
   zlib = `0001.0001.0003.0001'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\00
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\01
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\02
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\03
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\04
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\05
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\06
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\07
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\08
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\09
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\0A
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\0B
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\0C
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\0E
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\0F
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\10
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\11
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\12
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\13
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\14
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\15
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\16
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\17
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\18
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\19
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\1A
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\1B
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\1C
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL 
setup\b15.0\mounts\1D

a:  fd           N/A    N/A
c:  hd  FAT32   9756Mb  86% CP    UN
d:  hd  FAT32   1003Mb   4% CP    UN           WORK
e:  fd           N/A    N/A
f:  fd  FAT     1020Mb  95% CP    UN
g:  cd           N/A    N/A
j:  net OS2    32287Mb  57% CP          FC     V1
s:  net OS2    32212Mb  44% CP          FC     V1
y:  net OS2     1907Mb  34% CP          FC     SYS
z:  net OS2     1907Mb  34% CP          FC     SYS

C:\cygwin\bin  /usr/bin  user    binmode
C:\cygwin\lib  /usr/lib  user    binmode
C:\cygwin  /        user    binmode
c:    /cygdrive/c  user    binmode,noumount
d:    /cygdrive/d  user    binmode,noumount
j:    /cygdrive/j  user    binmode,noumount
s:    /cygdrive/s  user    binmode,noumount
y:    /cygdrive/y  user    binmode,noumount
z:    /cygdrive/z  user    binmode,noumount

Found: C:\cygwin\bin\bash.exe
Found: C:\cygwin\bin\cat.exe
Found: c:\GTKADA-1.3.10\BIN\cat.exe
Warning: C:\cygwin\bin\cat.exe hides c:\GTKADA-1.3.10\BIN\cat.exe
Found: c:\USR\LOCAL\WBIN\cat.exe
Warning: C:\cygwin\bin\cat.exe hides c:\USR\LOCAL\WBIN\cat.exe
Found: C:\cygwin\bin\cpp.exe
Found: c:\F\GCC-2.95.2\BIN\cpp.exe
Warning: C:\cygwin\bin\cpp.exe hides c:\F\GCC-2.95.2\BIN\cpp.exe
Found: C:\cygwin\bin\find.exe
Found: c:\WINDOWS\COMMAND\find.exe
Warning: C:\cygwin\bin\find.exe hides c:\WINDOWS\COMMAND\find.exe
Found: c:\USR\LOCAL\WBIN\find.exe
Warning: C:\cygwin\bin\find.exe hides c:\USR\LOCAL\WBIN\find.exe
Found: C:\cygwin\bin\gcc.exe
Found: c:\GNAT\BIN\gcc.exe
Warning: C:\cygwin\bin\gcc.exe hides c:\GNAT\BIN\gcc.exe
Found: c:\F\GCC-2.95.2\BIN\gcc.exe
Warning: C:\cygwin\bin\gcc.exe hides c:\F\GCC-2.95.2\BIN\gcc.exe
Found: C:\cygwin\bin\gdb.exe
Found: c:\GNAT\BIN\gdb.exe
Warning: C:\cygwin\bin\gdb.exe hides c:\GNAT\BIN\gdb.exe
Found: c:\F\GCC-2.95.2\BIN\gdb.exe
Warning: C:\cygwin\bin\gdb.exe hides c:\F\GCC-2.95.2\BIN\gdb.exe
Found: C:\cygwin\bin\ld.exe
Found: c:\GNAT\BIN\ld.exe
Warning: C:\cygwin\bin\ld.exe hides c:\GNAT\BIN\ld.exe
Found: c:\F\GCC-2.95.2\BIN\ld.exe
Warning: C:\cygwin\bin\ld.exe hides c:\F\GCC-2.95.2\BIN\ld.exe
Found: C:\cygwin\bin\ls.exe
Found: z:\PUBLIC\ls.exe
Warning: C:\cygwin\bin\ls.exe hides z:\PUBLIC\ls.exe
Found: c:\USR\LOCAL\WBIN\ls.exe
Warning: C:\cygwin\bin\ls.exe hides c:\USR\LOCAL\WBIN\ls.exe
Found: C:\cygwin\bin\make.exe
Found: c:\ELJ-WIN32\LCC\BIN\make.exe
Warning: C:\cygwin\bin\make.exe hides c:\ELJ-WIN32\LCC\BIN\make.exe
Found: c:\GNAT\BIN\make.exe
Warning: C:\cygwin\bin\make.exe hides c:\GNAT\BIN\make.exe
Found: c:\BORLAND\DELPHI5\BIN\make.exe
Warning: C:\cygwin\bin\make.exe hides 
c:\BORLAND\DELPHI5\BIN\make.exe
Found: c:\USR\LOCAL\WBIN\make.exe
Warning: C:\cygwin\bin\make.exe hides c:\USR\LOCAL\WBIN\make.exe
Found: c:\BORLAND\CBUILD~1\BIN\make.exe
Warning: C:\cygwin\bin\make.exe hides 
c:\BORLAND\CBUILD~1\BIN\make.exe
Found: c:\F\GCC-2.95.2\BIN\make.exe
Warning: C:\cygwin\bin\make.exe hides c:\F\GCC-2.95.2\BIN\make.exe
Found: C:\cygwin\bin\sh.exe
Found: c:\GTKADA-1.3.10\BIN\sh.exe
Warning: C:\cygwin\bin\sh.exe hides c:\GTKADA-1.3.10\BIN\sh.exe
Found: c:\BIN\sh.exe
Warning: C:\cygwin\bin\sh.exe hides c:\BIN\sh.exe
Found: \bin\sh.exe
Warning: C:\cygwin\bin\sh.exe hides \bin\sh.exe

   101k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygjscript-2.dll 
- os=4.0 img=1.0 sys=4.0
                   "cygjscript-2.dll" v0.0 ts=2001/6/22 4:29
   700k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygkab-2.dll - 
os=4.0 img=1.0 sys=4.0
                   "cygkab-2.dll" v0.0 ts=2001/6/22 4:43
   593k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygkdecore-2.dll 
- os=4.0 img=1.0 sys=4.0
                   "cygkdecore-2.dll" v0.0 ts=2001/6/22 4:27
   828k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygkdeui-2.dll - 
os=4.0 img=1.0 sys=4.0
                   "cygkdeui-2.dll" v0.0 ts=2001/6/22 4:28
   309k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygkfile-2.dll - 
os=4.0 img=1.0 sys=4.0
                   "cygkfile-2.dll" v0.0 ts=2001/6/22 4:32
    68k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygkfm-2.dll - 
os=4.0 img=1.0 sys=4.0
                   "cygkfm-2.dll" v0.0 ts=2001/6/22 4:31
   502k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygkhtmlw-2.dll 
- os=4.0 img=1.0 sys=4.0
                   "cygkhtmlw-2.dll" v0.0 ts=2001/6/22 4:30
    39k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygkimgio-2.dll 
- os=4.0 img=1.0 sys=4.0
                   "cygkimgio-2.dll" v0.0 ts=2001/6/22 4:30
   120k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygkspell-2.dll 
- os=4.0 img=1.0 sys=4.0
                   "cygkspell-2.dll" v0.0 ts=2001/6/22 4:39
   948k 2001/06/27 
C:\cygwin\usr\local\kde1\bin\cygmediatool-2.dll - os=4.0 img=1.0 
sys=4.0
                   "cygmediatool-2.dll" v0.0 ts=2001/6/27 7:48
    18k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cyggdbm-1.dll - 
os=4.0 img=1.0 sys=4.0
                   "cyggdbm-1.dll" v0.0 ts=2001/6/21 3:07
    28k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cyggif-3.dll - 
os=4.0 img=1.0 sys=4.0
                   "cyggif-3.dll" v0.0 ts=2001/6/21 3:07
   119k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygjpeg6b.dll - 
os=4.0 img=1.0 sys=4.0
                   "cygjpeg6b.dll" v0.0 ts=2000/10/22 17:58
   246k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygmimelib-1.dll 
- os=4.0 img=1.0 sys=4.0
                   "cygmimelib-1.dll" v0.0 ts=2001/6/21 3:09
   225k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygncurses5.dll 
- os=4.0 img=1.0 sys=4.0
                   "cygncurses5.dll" v0.0 ts=2001/1/21 12:38
   163k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygpng2.dll - 
os=4.0 img=1.0 sys=4.0
                   "cygpng2.dll" v0.0 ts=2001/5/5 21:05
   118k 2001/06/22 
C:\cygwin\usr\local\kde1\bin\cygQwSpriteField-1.dll - os=4.0 
img=1.0 sys=4.0
                   "cygQwSpriteField-1.dll" v0.0 ts=2001/6/21 3:10
   243k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygtiff3.dll - 
os=4.0 img=1.0 sys=4.0
                   "cygtiff3.dll" v0.0 ts=2000/10/22 18:14
    81k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cyguulib-5.dll - 
os=4.0 img=1.0 sys=4.0
                   "cyguulib-5.dll" v0.0 ts=2001/6/21 3:10
    49k 2001/06/22 C:\cygwin\usr\local\kde1\bin\cygz.dll - 
os=4.0 img=1.0 sys=4.0
                   "cygz.dll" v0.0 ts=2001/2/3 12:35
   212k 2000/10/10 \usr\local\bin\cygwin-ruby16.dll - os=4.0 
img=1.0 sys=4.0
                   "cygwin-ruby16.dll" v0.0 ts=2000/10/10 6:16
    81k 2001/04/28 C:\cygwin\bin\cygitcl30.dll - os=4.0 img=1.0 
sys=4.0
                   "cygitcl30.dll" v0.0 ts=2001/4/28 15:57
    35k 2001/04/28 C:\cygwin\bin\cygitk30.dll - os=4.0 img=1.0 
sys=4.0
                   "cygitk30.dll" v0.0 ts=2001/4/28 15:57
   390k 2001/04/28 C:\cygwin\bin\cygtcl80.dll - os=4.0 img=1.0 
sys=4.0
                   "cygtcl80.dll" v0.0 ts=2001/4/28 15:56
     5k 2001/04/28 C:\cygwin\bin\cygtclpip80.dll - os=4.0 
img=1.0 sys=4.0
    10k 2001/04/28 C:\cygwin\bin\cygtclreg80.dll - os=4.0 
img=1.0 sys=4.0
                   "cygtclreg80.dll" v0.0 ts=2001/4/28 15:56
   623k 2001/04/28 C:\cygwin\bin\cygtk80.dll - os=4.0 img=1.0 
sys=4.0
                   "cygtk80.dll" v0.0 ts=2001/4/28 15:57
    45k 2001/07/04 C:\cygwin\bin\cygjbig1.dll - os=4.0 img=1.0 
sys=4.0
                   "cygjbig1.dll" v0.0 ts=2001/7/3 20:25
   119k 2001/06/06 C:\cygwin\bin\cygjpeg6b.dll - os=4.0 img=1.0 
sys=4.0
                   "cygjpeg6b.dll" v0.0 ts=2001/6/5 21:27
   245k 2001/06/12 C:\cygwin\bin\cygtiff3.dll - os=4.0 img=1.0 
sys=4.0
                   "cygtiff3.dll" v0.0 ts=2001/6/12 10:25
    18k 2000/10/23 C:\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 
sys=4.0
                   "cyggdbm.dll" v0.0 ts=2000/10/22 19:26
    21k 2001/06/20 C:\cygwin\bin\cygintl.dll - os=4.0 img=1.0 
sys=4.0
                   "cygintl.dll" v0.0 ts=2001/6/20 10:09
   163k 2001/05/06 C:\cygwin\bin\cygpng2.dll - os=4.0 img=1.0 
sys=4.0
                   "cygpng2.dll" v0.0 ts=2001/5/5 21:05
    49k 2001/02/03 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                   "cygz.dll" v0.0 ts=2001/2/3 12:35
    45k 2001/04/25 C:\cygwin\bin\cygform5.dll - os=4.0 img=1.0 
sys=4.0
                   "cygform5.dll" v0.0 ts=2001/4/24 22:28
    26k 2001/04/25 C:\cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 
sys=4.0
                   "cygmenu5.dll" v0.0 ts=2001/4/24 22:27
   156k 2001/04/25 C:\cygwin\bin\cygncurses++5.dll - os=4.0 
img=1.0 sys=4.0
                   "cygncurses++5.dll" v0.0 ts=2001/4/24 22:29
   226k 2001/04/25 C:\cygwin\bin\cygncurses5.dll - os=4.0 
img=1.0 sys=4.0
                   "cygncurses5.dll" v0.0 ts=2001/4/24 22:17
    15k 2001/04/25 C:\cygwin\bin\cygpanel5.dll - os=4.0 img=1.0 
sys=4.0
                   "cygpanel5.dll" v0.0 ts=2001/4/24 22:27
    41k 2001/07/04 C:\cygwin\bin\cygXpm-noX4.dll - os=4.0 
img=1.0 sys=4.0
                   "cygXpm-noX4.dll" v0.0 ts=2001/7/3 18:21
    45k 2001/07/04 C:\cygwin\bin\cygXpm-X4.dll - os=4.0 img=1.0 
sys=4.0
                   "cygXpm-X4.dll" v0.0 ts=2000/11/19 18:45
    56k 2000/12/03 C:\cygwin\bin\cygbz21.0.dll - os=4.0 img=1.0 
sys=4.0
                   "cygbz21.0.dll" v0.0 ts=2000/11/20 15:53
    17k 2001/06/28 C:\cygwin\bin\cyghistory4.dll - os=4.0 
img=1.0 sys=4.0
                   "cyghistory4.dll" v0.0 ts=2001/1/6 20:34
    21k 2001/06/28 C:\cygwin\bin\cyghistory5.dll - os=4.0 
img=1.0 sys=4.0
                   "cyghistory5.dll" v0.0 ts=2001/6/27 19:27
   108k 2001/06/28 C:\cygwin\bin\cygreadline4.dll - os=4.0 
img=1.0 sys=4.0
                   "cygreadline4.dll" v0.0 ts=2001/1/6 20:34
   135k 2001/06/28 C:\cygwin\bin\cygreadline5.dll - os=4.0 
img=1.0 sys=4.0
                   "cygreadline5.dll" v0.0 ts=2001/6/27 19:27
   701k 2001/09/13 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 
sys=4.0
                   "cygwin1.dll" v0.0 ts=2001/9/12 20:54
     Cygwin DLL version info:
         dll major: 1003
         dll minor: 3
         dll epoch: 19
         dll bad signal mask: 19005
         dll old termios: 5
         dll malloc env: 28
         api major: 0
         api minor: 46
         shared data: 3
         dll identifier: cygwin1
         mount registry: 2
         cygnus registry name: Cygnus Solutions
         cygwin registry name: Cygwin
         program options name: Program Options
         cygwin mount registry name: mounts v2
         cygdrive flags: cygdrive flags
         cygdrive prefix: cygdrive prefix
         cygdrive default prefix:
         build date: Wed Sep 12 23:54:31 EDT 2001
         shared id: cygwin1S3

   551k 2001/06/04 c:\RUBY\BIN\cygwin-ruby16.dll - os=4.0 
img=1.0 sys=4.0
                   "cygwin-ruby16.dll" v0.0 ts=2001/6/4 6:44
   615k 2001/05/01 c:\RUBY\BIN\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                   "cygwin1.dll" v0.0 ts=2001/1/31 7:08
     Cygwin DLL version info:
         dll major: 1001
         dll minor: 8
         dll epoch: 19
         dll bad signal mask: 19005
         dll old termios: 5
         dll malloc env: 28
         api major: 0
         api minor: 34
         shared data: 3
         dll identifier: cygwin1
         mount registry: 2
         cygnus registry name: Cygnus Solutions
         cygwin registry name: Cygwin
         program options name: Program Options
         cygwin mount registry name: mounts v2
         cygdrive flags: cygdrive flags
         cygdrive prefix: cygdrive prefix
         cygdrive default prefix:
         build date: Wed Jan 31 10:08:38 EST 2001
         shared id: cygwin1S3

Use -h to see help about each section


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]