i_nwl.pas 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. $Id$
  3. Copyright (c) 1998-2004 by Peter Vreman
  4. This unit implements support information structures for Netware (libc) modules
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************}
  17. { This unit implements support information structures for Netware libc modules. }
  18. unit i_nwl;
  19. interface
  20. uses
  21. systems;
  22. const
  23. system_i386_netwlibc_info : tsysteminfo =
  24. (
  25. system : system_i386_netwlibc;
  26. name : 'Netware for i386(libc)';
  27. shortname : 'Netwlibc';
  28. flags : [];
  29. cpu : cpu_i386;
  30. unit_env : 'NETWLIBCUNITS';
  31. extradefines : 'NETWARE;NETWARE_LIBC';
  32. sourceext : '.pp';
  33. pasext : '.pas';
  34. exeext : '.nlm';
  35. defext : '.def';
  36. scriptext : '.sh';
  37. smartext : '.sl';
  38. unitext : '.ppu';
  39. unitlibext : '.ppl';
  40. asmext : '.s';
  41. objext : '.o';
  42. resext : '.res';
  43. resobjext : '.or';
  44. sharedlibext : '.nlm';
  45. staticlibext : '.a';
  46. staticlibprefix : '';
  47. sharedlibprefix : '';
  48. sharedClibext : '.nlm';
  49. staticClibext : '.a';
  50. staticClibprefix : '';
  51. sharedClibprefix : '';
  52. Cprefix : '';
  53. newline : #13#10;
  54. dirsep : '/';
  55. files_case_relevent : false;
  56. assem : as_i386_elf32;
  57. assemextern : as_gas;
  58. link : nil;
  59. linkextern : nil;
  60. ar : ar_gnu_ar;
  61. res : res_none;
  62. script : script_unix;
  63. endian : endian_little;
  64. alignment :
  65. (
  66. procalign : 4;
  67. loopalign : 4;
  68. jumpalign : 0;
  69. constalignmin : 0;
  70. constalignmax : 4;
  71. varalignmin : 0;
  72. varalignmax : 4;
  73. localalignmin : 4;
  74. localalignmax : 4;
  75. recordalignmin : 0;
  76. recordalignmax : 4;
  77. maxCrecordalign : 4
  78. );
  79. first_parm_offset : 8;
  80. stacksize : 16384;
  81. DllScanSupported:false;
  82. use_function_relative_addresses : true
  83. );
  84. implementation
  85. initialization
  86. {$ifdef CPU86}
  87. {$ifdef netwlibc}
  88. set_source_info(system_i386_netwlibc_info);
  89. {$endif netwlibc}
  90. {$endif CPU86}
  91. end.
  92. {
  93. $Log$
  94. Revision 1.3 2004-10-25 15:38:41 peter
  95. * heap and heapsize removed
  96. * checkpointer fixes
  97. Revision 1.2 2004/09/26 19:51:02 armin
  98. * added define netware and netware_libc for target netwlibc, netware_clib for netware
  99. Revision 1.1 2004/09/04 21:18:47 armin
  100. * target netwlibc added (libc is preferred for newer netware versions)
  101. }