home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / os / minix / 5133 < prev    next >
Encoding:
Internet Message Format  |  1993-01-12  |  1.1 KB

  1. Path: sparky!uunet!cis.ohio-state.edu!zaphod.mps.ohio-state.edu!howland.reston.ans.net!usc!cs.utexas.edu!sun-barr!sh.wide!ascwide!ascgw!uitecgw!nemossan
  2. From: nemossan@uitec.ac.jp (Sakurao NEMOTO)
  3. Newsgroups: comp.os.minix
  4. Subject: The "string" library in the 1.6.24b (lib/string/*.s)
  5. Keywords: 1.6.24b, lib/string/*.s
  6. Message-ID: <1671@uitecgw.uitec.ac.jp>
  7. Date: 12 Jan 93 05:08:18 GMT
  8. Organization: Univ. Industrial Tech., Sagamihara, JAPAN
  9. Lines: 28
  10.  
  11. The followings are the report from k.h@mix on 1.6.24b, originaly
  12. written in English.
  13.  
  14. ------
  15.     The libc.A made by the "lib/Makefile.ansi" in 1.6.24b causes
  16. some problems.
  17.  
  18.     For example, the "/bin/sh" dies at the meta-character expansion
  19. in some conditions of the protect mode.
  20.  
  21.     $ echo /usr/src/tools/*
  22.     Memory fault - core dumped
  23.  
  24.  
  25.     This is caused by string functions in the "lib/string" directory.
  26. It seems to me that "lib/string/*.s" files are bad.  By re-creating *.s
  27. files from "lib/string/*.x" with
  28.  
  29.     for i in *.x
  30.     do
  31.         /usr/lib/ncpp -P -Di8088 $i.x >$i.s
  32.     done
  33.  
  34. we can get correct libc.A.
  35.  
  36.     Also, by using the "libs.A" from the "UniPress" distribution, we
  37. can get correct result.
  38. ------
  39.