home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / ccs / lib / help / bu < prev    next >
Encoding:
Text File  |  1998-08-19  |  6.5 KB  |  174 lines

  1. #ident    "@(#)make:bu    1.7"
  2. *
  3. *   make(1) error messages
  4. *
  5. -1
  6. "no description argument after -f flag"
  7. make(1) requires a description file name to follow the -f
  8. flag.  For further help see the manual page for make(1).
  9. -2
  10. "no viewpath argument after -v flag"
  11. The make(1) command format requires a viewpath to be specified after
  12. the -v flag.  For further help see the manual page for make(1).
  13. -4
  14. "viewpath name too long for array"
  15. The buffer used to internally store the viewpath is limited to the
  16. constant MAXVPATH (= 3*MAXNAMLEN = 512*3 characters).
  17. -5
  18. "getcwd"
  19. An error occurred during the execution of the system routine getcwd(3C).
  20. -6
  21. "viewpath contains non-existent directory"
  22. A directory listed in the specified viewpath doesn't exist OR read
  23. permission for that directory has not been granted.
  24. -7
  25. "no arguments or description file"
  26. No makefile was found.
  27. -9
  28. "Description file error"
  29. An error occurred while parsing the makefile.
  30. -10
  31. "too many command lines for '...' "
  32. Only a single set of commands is allowed for a particular target. 
  33. Although the makefile may contain multiple occurrences of the same
  34. target, only one of those occurrences may contain a command set.  (A
  35. command set may contain only one command.) 
  36. -11
  37. "too many criteria for <target>"
  38. Only a single set of criteria is allowed for a particular target. 
  39. Although the makefile may contain multiple occurrences of the same
  40. target, only one of those occurrences may contain a set of criteria.
  41. -12
  42. "warning: cannot copy <file>"
  43. A system copy error occurred while copying the specified library file
  44. into the user's node.
  45. -13
  46. "Don't know how to make <target>"
  47. make(1) was unable to find the specified target and there
  48. was not sufficient information to generate it.
  49. -14
  50. "<target> not remade because of errors"
  51. While processing the above target, errors were encountered.  Processing
  52. continued since these errors were flagged as 'ignorable'.
  53. -15
  54. "warning: cannot copy <file>"
  55. A system copy error occurred while attempting to copy the specified
  56. file.  Check to see that the file actually exists and is accessible.
  57. -16
  58. "warning: <file> not removed"
  59. This error should only occur in connection with error (bu15).  This is
  60. either a system copy error as indicated in (bu15), or a bug in
  61. make(1).
  62. -17
  63. "cannot open <file>"
  64. A system error occurred while attempting to open <file> for reading.
  65. -18
  66. "cannot open <file>"
  67. A system error occurred while attempting to open <file> for writing.
  68. -19
  69. "cp: fread error"
  70. A system error has occurred while attempting the system function
  71. fread().
  72. -20
  73. "cp: fwrite error"
  74. A system error has occurred while attempting the system function
  75. fwrite().
  76. -21
  77. "*** Error code '...' " OR  "*** Termination code '   ' "
  78. This error is reported but does not occur in make(1).  It
  79. is associated with the last command executed.  See the UNIX manual for
  80. additional information on the error codes for that command.  If
  81. "ignored" has been printed on the line immediately following the above 
  82. error message, this error is ignored by make(1).  Errors
  83. will be ignored if the -i option was set on execution, or if the dummy
  84. target .IGNORE appears in the makefile, or if the particular command was
  85. prefaced with a minus sign (-).
  86. -22
  87. "couldn't load shell"
  88. This system error could result if the system is overloaded.  Try again.
  89. -23
  90. "bad wait code"
  91. This system error could result if the system is overloaded.  Try again. 
  92. -24
  93. "cannot load <file>"
  94. This system error may occur if the command doesn't exist.  No further
  95. help available.
  96. -25
  97. "cannot touch <file>"
  98. An error has occurred with either open(), close(), write(), creat(), or
  99. the file to be touched doesn't exist.
  100. -28
  101. "<file> is not an archive"
  102. In targets of the form lib((e)) and lib(m), lib must be a UNIX archive.
  103. -31
  104. "out of memory"
  105. A call to the system function calloc() has resulted in the return of a
  106. null pointer.  There is either no available memory or the arena has been
  107. detectably corrupted by storing outside the bounds of a block.
  108. -32
  109. "infinitely recursive macro?"
  110. The macro nesting depth has exceeded 100 levels.  An infinitely
  111. recursive macro is probably the cause -- recheck your code.
  112. -33
  113. "warning: <macro> changed after being used"
  114. The specified macro has been previously defined and used, and is now
  115. being changed.  Recheck your code to make sure this is what you want. 
  116. This is only a warning message.
  117. -34
  118. "line <lineno>: '......'"
  119. The above error originated in YACC.
  120. -35
  121. "$? list too long"
  122. Ignore this error message if you are not using the macro $? in the
  123. makefile.  If you are, the list of names in $? will be incomplete.
  124. -36
  125. "inconsistent rules lines for <target>"
  126. The specified target was used in both single colon (:) and double colon
  127. mode (::).  One consistent mode must be used for multiple occurrences of
  128. the same target.
  129. -37
  130. "multiple make lines for <target>"
  131. Only a single set of commands is allowed for a particular target. 
  132. Although the makefile may contain multiple occurrences of the same
  133. target, only one of those occurrences may contain a command set.  (A
  134. command set may contain only one command.)
  135. -38
  136. "multiple build criteria for <target>"
  137. Only a single set of build criteria is allowed for a particular target. 
  138. Although the makefile may contain multiple occurrences of the same
  139. target, only one of those occurrences may contain a set of build
  140. criteria.
  141. -39
  142. "must be a separator on rules line <lineno>"
  143. If the command begins a newline it must be preceded by a tab.  Check to
  144. see that a tab has been used, rather than 7 spaces.  Commands that occur
  145. on the same line must be separated by semicolons.  Comment lines must
  146. begin with a '#'.
  147. -40
  148. "bad character ' ' (octal ' ')"
  149. The specified bad character was encountered while parsing the makefile.
  150. -41
  151. "line too long"
  152. The length of an input line is limited by the constant INMAX (=1500),
  153. defined in ../build/defs.h.  This problem may possibly be solved by
  154. using multiple target occurrences to break up long lists of
  155. dependencies.
  156. -42
  157. "don't know how to make <target>"
  158. make(1) was unable to find the specified target and couldn't
  159. find sufficient information in the makefile to generate the it.
  160. -43
  161. "<file> is not an object module"
  162. <file> is not in the format specified by a.out(4).
  163. -44
  164. "improper viewpath specification"
  165. The first node in the viewpath includes a directory which is not in the
  166. path of the current working directory.  Check the spelling of the node
  167. name.  If it is correct, see the manual page for make(1) for an
  168. explanation of the viewpath concept.
  169. -45
  170. "hash table overflow"
  171. The makefile being parsed contains in excess of HASHSIZE(=1024) names
  172. which have to be stored in make(1).  Decrease the number of
  173. targets in the makefile, break the makefile into two or more makefiles.
  174.