home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / os / linux / 16513 < prev    next >
Encoding:
Text File  |  1992-11-12  |  3.2 KB  |  90 lines

  1. Path: sparky!uunet!mcsun!ub4b!news.cs.kuleuven.ac.be!blekul11!frmop11!dearn!esoc!btitmars
  2. Organisation: European Space Operation Centre (E.S.O.C)
  3. Date: Thursday, 12 Nov 1992 05:38:44 CET
  4. From: BARRY TITMARSH <BTITMARS@ESOC.BITNET>
  5. Message-ID: <92317.053844BTITMARS@ESOC.BITNET>
  6. Newsgroups: comp.os.linux
  7. Subject: help compile 0.98.4 odd errors
  8. Lines: 80
  9.  
  10. this is the result i get from just typeing make in the /usr/src/linux
  11. dir
  12.  
  13.  
  14. gcc -DKERNEL -E -DMAX_16M -traditional -DSVGA_MODE=NORMAL_VGA boot/setup.S
  15.  -o boot/setup.s
  16. as86 -0 -a -o boot/setup.o boot/setup.s
  17. 00416 0184           3D        0000      cmp    ax,#NORMAL_VGA
  18. *****                                              ^unbound label
  19. 00418 0189           3D        0000      cmp    ax,#EXTENDED_VGA
  20. *****                                              ^unbound label
  21. 00420 018E           3D        0000      cmp    ax,#ASK_VGA
  22. *****                                              ^unbound label
  23. 00704 0401           3D        0000      cmp    ax,#ASK_VGA
  24. *****                                              ^unbound label
  25. 00706 0406           3D        0000      cmp    ax,#NORMAL_VGA
  26. *****                                              ^unbound label
  27. 00866 0624                     0000     modesave:    .word    NORMAL_VGA
  28. *****                                                           ^unbound label
  29.  
  30. 00006 errors
  31. 00000 warnings
  32. make: *** [boot/setup] Error 1
  33.  
  34.  
  35. at this point i have used boot/setup.S from 0.98p1  just to see what happens
  36. then i get the start of even more errors..
  37. even a make clean make dep fails
  38.  
  39. So whats wrong ????
  40. thanks barry,,,,
  41.  
  42.  
  43.  
  44. gcc -DKERNEL -Wall -O6 -fomit-frame-pointer -DMAX_16M -c -o tools/version.o
  45.  tools/version.c
  46. kernel
  47. gcc -DKERNEL -Wall -O6 -fomit-frame-pointer -DMAX_16M
  48.  -fno-omit-frame-pointer -c sched.c
  49.  
  50. sched.c:47: structure has no member named `task'
  51. sched.c:47: structure has no member named `task'
  52. sched.c:47: structure has no member named `task'
  53. sched.c: In function `__sleep_on':
  54. sched.c:212: warning: implicit declaration of function `save_flags'
  55. sched.c:216: warning: implicit declaration of function `restore_flags'
  56. sched.c: In function `interruptible_sleep_on':
  57. sched.c:203: warning: `flags' may be used uninitialized in this function
  58. sched.c: In function `sleep_on':
  59. sched.c:203: warning: `flags' may be used uninitialized in this function
  60. sched.c: In function `show_task':
  61. sched.c:507: structure has no member named `kernel_stack_page'
  62. make[1]: *** [sched.o] Error 1
  63. make: *** [linuxsubdirs] Error 1
  64.  
  65.  
  66.  
  67.  
  68.  
  69. sed '/\#\#\# Dependencies/q' < Makefile > tmp_make
  70. for i in init/*.c;do echo -n "init/";gcc -DKERNEL -E -DMAX_16M -M $i;done >>
  71. tmp_make
  72. cp tmp_make Makefile
  73. for i in kernel mm fs net lib; do (cd $i && make dep) || exit; done
  74. sed '/\#\#\# Dependencies/q' < Makefile > tmp_make
  75. gcc -DKERNEL -E -DMAX_16M -M *.c >> tmp_make
  76. cp tmp_make Makefile
  77. for i in chr_drv blk_drv FPU-emu; do (cd $i && make dep) || exit; done
  78. sed '/\#\#\# Dependencies/q' < Makefile > tmp_make
  79. gcc -DKERNEL -E -DMAX_16M -M -DKBD_UK -DKBDFLAGS=0 *.c >> tmp_make
  80. cp tmp_make Makefile
  81. sed '/\#\#\# Dependencies/q' < Makefile > tmp_make
  82. gcc -DKERNEL -E -DMAX_16M -M *.c >> tmp_make
  83. ll_rw_blk.c:15: linux/locks.h: No such file or directory
  84. make[2]: *** [dep] Error 1
  85. make[1]: *** [dep] Error 1
  86. make: *** [dep] Error 1
  87.  
  88.  
  89. 
  90.