systems.pas 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. This unit contains information about the target systems supported
  5. (these are not processor specific)
  6. This program is free software; you can redistribute it and/or modify
  7. iu under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 3 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with this program; if not, write to the Free Software
  16. Foundation, Inc., 675 Mass Ave, Cambridge- MA 02139, USA.
  17. ****************************************************************************
  18. }
  19. unit systems;
  20. {$i fpcdefs.inc}
  21. interface
  22. type
  23. tendian = (endian_little,endian_big);
  24. (*
  25. IMPORTANT NOTE:
  26. The value of this enumeration is stored in PPU files.
  27. Therefore adding new CPU targets should not change the
  28. values of the pre-existing targets. (CEC)
  29. FURTHERMORE : Make sure that this branch values, are
  30. consistant with the main branch version always.
  31. *)
  32. tsystemcpu=
  33. (
  34. cpu_no, { 0 }
  35. cpu_i386, { 1 }
  36. cpu_m68k, { 2 }
  37. cpu_alpha, { 3 }
  38. cpu_powerpc, { 4 }
  39. cpu_sparc, { 5 }
  40. cpu_vm, { 6 }
  41. cpu_iA64, { 7 }
  42. cpu_x86_64, { 8 }
  43. cpu_mips, { 9 }
  44. cpu_arm { 10 }
  45. );
  46. tasmmode= (asmmode_none
  47. { standard assembler (cpu dependant) with full parsing }
  48. ,asmmode_standard
  49. ,asmmode_i386_att
  50. ,asmmode_i386_intel
  51. ,asmmode_ppc_gas
  52. ,asmmode_ppc_motorola
  53. ,asmmode_arm_gas
  54. ,asmmode_sparc_gas
  55. ,asmmode_x86_64_gas
  56. ,asmmode_m68k_mot
  57. );
  58. (* IMPORTANT NOTE:
  59. the integer value of this enum is stored in PPU
  60. files to recognize the target, so if you add new targets
  61. allways add them at end PM
  62. FURTHERMORE : Make sure that this branch values are
  63. consistant with the main branch version always. (CEC)
  64. *)
  65. type
  66. tsystem =
  67. (
  68. system_none, { 0 }
  69. obsolete_system_i386_GO32V1,{ 1 }
  70. system_i386_GO32V2, { 2 }
  71. system_i386_linux, { 3 }
  72. system_i386_OS2, { 4 }
  73. system_i386_Win32, { 5 }
  74. system_i386_freebsd, { 6 }
  75. system_m68k_Amiga, { 7 }
  76. system_m68k_Atari, { 8 }
  77. system_m68k_Mac, { 9 }
  78. system_m68k_linux, { 10 }
  79. system_m68k_PalmOS, { 11 }
  80. system_alpha_linux, { 12 }
  81. system_powerpc_linux, { 13 }
  82. system_powerpc_macos, { 14 }
  83. system_i386_sunos, { 15 }
  84. system_i386_beos, { 16 }
  85. system_i386_netbsd, { 17 }
  86. system_m68k_netbsd, { 18 }
  87. system_i386_Netware, { 19 }
  88. system_i386_qnx, { 20 }
  89. system_i386_wdosx, { 21 }
  90. system_sparc_sunos, { 22 }
  91. system_sparc_linux, { 23 }
  92. system_i386_openbsd, { 24 }
  93. system_m68k_openbsd, { 25 }
  94. system_x86_64_linux, { 26 }
  95. system_powerpc_darwin, { 27 }
  96. system_i386_EMX, { 28 }
  97. system_powerpc_netbsd, { 29 }
  98. system_powerpc_openbsd, { 30 }
  99. system_arm_linux, { 31 }
  100. system_i386_watcom, { 32 }
  101. system_powerpc_MorphOS, { 33 }
  102. system_x86_64_freebsd, { 34 }
  103. system_i386_netwlibc { 35 }
  104. );
  105. tasm = (as_none
  106. ,as_gas { standard gnu assembler }
  107. ,as_i386_as_aout
  108. ,as_i386_nasmcoff
  109. ,as_i386_nasmwin32
  110. ,as_i386_nasmwdosx
  111. ,as_i386_nasmelf
  112. ,as_i386_nasmobj
  113. ,as_i386_nasmbeos
  114. ,as_i386_tasm
  115. ,as_i386_masm
  116. ,as_i386_wasm
  117. ,as_i386_coff
  118. ,as_i386_pecoff
  119. ,as_i386_elf32
  120. ,as_i386_pecoffwdosx
  121. ,as_m68k_mit
  122. ,as_powerpc_mpw
  123. ,as_darwin
  124. );
  125. tar = (ar_none
  126. ,ar_gnu_ar,ar_mpw_ar
  127. );
  128. tres = (res_none
  129. ,res_gnu_windres,res_emxbind
  130. ,res_m68k_palmos,res_m68k_mpw
  131. ,res_powerpc_mpw
  132. );
  133. tscripttype = (script_none
  134. ,script_dos,script_unix,script_amiga,
  135. script_mpw
  136. );
  137. tabi = (abi_default
  138. ,abi_powerpc_sysv,abi_powerpc_aix
  139. );
  140. {*****************************************************************************
  141. Structures
  142. *****************************************************************************}
  143. type
  144. { Abstract linker class which is implemented in link module }
  145. TAbstractLinker = class
  146. end;
  147. TAbstractLinkerClass = class of TAbstractLinker;
  148. { Abstract assembler class which is implemented in assemble module }
  149. TAbstractAssembler = class
  150. end;
  151. TAbstractAssemblerClass = class of TAbstractAssembler;
  152. palignmentinfo = ^talignmentinfo;
  153. talignmentinfo = record
  154. procalign,
  155. loopalign,
  156. jumpalign,
  157. constalignmin,
  158. constalignmax,
  159. varalignmin,
  160. varalignmax,
  161. localalignmin,
  162. localalignmax,
  163. recordalignmin,
  164. recordalignmax,
  165. maxCrecordalign : longint;
  166. end;
  167. tasmflags = (af_none,
  168. af_outputbinary,af_allowdirect,
  169. af_needar,af_smartlink_sections,
  170. af_labelprefix_only_inside_procedure,
  171. af_supports_dwarf
  172. );
  173. pasminfo = ^tasminfo;
  174. tasminfo = record
  175. id : tasm;
  176. idtxt : string[9];
  177. asmbin : string[8];
  178. asmcmd : string[50];
  179. supported_target : tsystem;
  180. flags : set of tasmflags;
  181. labelprefix : string[3];
  182. comment : string[3];
  183. end;
  184. parinfo = ^tarinfo;
  185. tarinfo = record
  186. id : tar;
  187. arcmd : string[50];
  188. end;
  189. presinfo = ^tresinfo;
  190. tresinfo = record
  191. id : tres;
  192. resbin : string[8];
  193. rescmd : string[50];
  194. end;
  195. tsystemflags = (tf_none,
  196. tf_under_development,
  197. tf_need_export,tf_needs_isconsole,
  198. tf_code_small,tf_static_reg_based,
  199. tf_needs_symbol_size,
  200. tf_smartlink_sections,
  201. tf_needs_dwarf_cfi
  202. );
  203. psysteminfo = ^tsysteminfo;
  204. { using packed causes bus errors on processors which require alignment }
  205. tsysteminfo = record
  206. system : tsystem;
  207. name : string[34];
  208. shortname : string[9];
  209. flags : set of tsystemflags;
  210. cpu : tsystemcpu;
  211. unit_env : string[16];
  212. extradefines : string[40];
  213. sourceext,
  214. pasext,
  215. exeext,
  216. defext,
  217. scriptext,
  218. smartext,
  219. unitext,
  220. unitlibext,
  221. asmext,
  222. objext,
  223. resext,
  224. resobjext : string[4];
  225. sharedlibext : string[10];
  226. staticlibext,
  227. staticlibprefix : string[4];
  228. sharedlibprefix : string[4];
  229. sharedClibext : string[10];
  230. staticClibext,
  231. staticClibprefix : string[4];
  232. sharedClibprefix : string[4];
  233. Cprefix : string[2];
  234. newline : string[2];
  235. dirsep : char;
  236. files_case_relevent : boolean;
  237. assem : tasm;
  238. assemextern : tasm; { external assembler, used by -a }
  239. link : tabstractlinkerclass;
  240. linkextern : tabstractlinkerclass; { external linker, used by -s }
  241. ar : tar;
  242. res : tres;
  243. script : tscripttype;
  244. endian : tendian;
  245. alignment : talignmentinfo;
  246. {
  247. Offset from the argument pointer register to the first
  248. argument's address. On some machines it may depend on
  249. the data type of the function.
  250. (see also FIRST_PARM_OFFSET in GCC source)
  251. }
  252. first_parm_offset : longint;
  253. stacksize : longint;
  254. DllScanSupported : boolean;
  255. use_function_relative_addresses : boolean;
  256. abi : tabi;
  257. end;
  258. const
  259. { alias for supported_target field in tasminfo }
  260. system_any = system_none;
  261. cpu2str : array[TSystemCpu] of string =
  262. ('','i386','m68k','alpha','powerpc','sparc','vm','ia64','x86_64',
  263. 'mips','arm');
  264. var
  265. targetinfos : array[tsystem] of psysteminfo;
  266. arinfos : array[tar] of parinfo;
  267. resinfos : array[tres] of presinfo;
  268. asminfos : array[tasm] of pasminfo;
  269. source_info : tsysteminfo;
  270. target_cpu : tsystemcpu;
  271. target_info : tsysteminfo;
  272. target_asm : tasminfo;
  273. target_ar : tarinfo;
  274. target_res : tresinfo;
  275. target_cpu_string,
  276. target_os_string : string[12]; { for rtl/<X>/,fcl/<X>/, etc. }
  277. target_full_string : string[24];
  278. function set_target(t:tsystem):boolean;
  279. function set_target_asm(t:tasm):boolean;
  280. function set_target_ar(t:tar):boolean;
  281. function set_target_res(t:tres):boolean;
  282. function set_target_by_string(const s : string) : boolean;
  283. function set_target_asm_by_string(const s : string) : boolean;
  284. procedure set_source_info(const ti : tsysteminfo);
  285. procedure UpdateAlignment(var d:talignmentinfo;const s:talignmentinfo);
  286. procedure RegisterTarget(const r:tsysteminfo);
  287. procedure RegisterRes(const r:tresinfo);
  288. procedure RegisterAr(const r:tarinfo);
  289. { Register the external linker. This routine is called to setup the
  290. class to use for the linker. It returns the tsysteminfo structure
  291. updated with the correct linker class for external linking.
  292. }
  293. procedure RegisterExternalLinker(var system_info: tsysteminfo; c:TAbstractLinkerClass);
  294. { Register the internal linker. This routine is called to setup the
  295. class to use for the linker. It returns the tsysteminfo structure
  296. updated with the correct linker class for internal linking.
  297. If internal linking is not supported, this class can be set
  298. to nil.
  299. }
  300. procedure RegisterInternalLinker(var system_info : tsysteminfo; c:TAbstractLinkerClass);
  301. procedure InitSystems;
  302. {$ifdef FreeBSD}
  303. function GetOSRelDate:Longint;
  304. {$endif}
  305. implementation
  306. uses
  307. cutils{$ifdef FreeBSD},SysCtl,BaseUnix{$endif};
  308. {****************************************************************************
  309. OS runtime version detection utility routine
  310. ****************************************************************************}
  311. {$ifdef FreeBSD}
  312. function GetOSRelDate:Longint;
  313. var
  314. mib : array[0..1] of cint;
  315. rval : cint;
  316. len : size_t;
  317. i : longint;
  318. v : longint;
  319. oerrno : cint;
  320. S : AnsiString;
  321. Begin
  322. s:='ab';
  323. SetLength(S,50);
  324. mib[0] := CTL_KERN;
  325. mib[1] := KERN_OSRELDATE;
  326. len := 4;
  327. oerrno:= fpgeterrno;
  328. if (FPsysctl(@mib, 2, pchar(@v), @len, NIL, 0) = -1) Then
  329. Begin
  330. if (fpgeterrno = ESysENOMEM) Then
  331. fpseterrno(oerrno);
  332. GetOSRelDate:=0;
  333. End
  334. else
  335. GetOSRelDate:=v;
  336. End;
  337. {$endif}
  338. {****************************************************************************
  339. Target setting
  340. ****************************************************************************}
  341. function set_target(t:tsystem):boolean;
  342. begin
  343. set_target:=false;
  344. if assigned(targetinfos[t]) then
  345. begin
  346. target_info:=targetinfos[t]^;
  347. set_target_asm(target_info.assem);
  348. set_target_ar(target_info.ar);
  349. set_target_res(target_info.res);
  350. target_cpu:=target_info.cpu;
  351. target_os_string:=lower(target_info.shortname);
  352. target_cpu_string:=cpu2str[target_cpu];
  353. target_full_string:=target_cpu_string+'-'+target_os_string;
  354. set_target:=true;
  355. exit;
  356. end;
  357. end;
  358. function set_target_asm(t:tasm):boolean;
  359. begin
  360. set_target_asm:=false;
  361. if assigned(asminfos[t]) and
  362. ((asminfos[t]^.supported_target=target_info.system) or
  363. (asminfos[t]^.supported_target=system_any)) then
  364. begin
  365. target_asm:=asminfos[t]^;
  366. set_target_asm:=true;
  367. exit;
  368. end;
  369. end;
  370. function set_target_ar(t:tar):boolean;
  371. begin
  372. set_target_ar:=false;
  373. if assigned(arinfos[t]) then
  374. begin
  375. target_ar:=arinfos[t]^;
  376. set_target_ar:=true;
  377. exit;
  378. end;
  379. end;
  380. function set_target_res(t:tres):boolean;
  381. begin
  382. set_target_res:=false;
  383. if assigned(resinfos[t]) then
  384. begin
  385. target_res:=resinfos[t]^;
  386. set_target_res:=true;
  387. exit;
  388. end;
  389. end;
  390. function set_target_by_string(const s : string) : boolean;
  391. var
  392. hs : string;
  393. t : tsystem;
  394. begin
  395. set_target_by_string:=false;
  396. { this should be case insensitive !! PM }
  397. hs:=upper(s);
  398. for t:=low(tsystem) to high(tsystem) do
  399. if assigned(targetinfos[t]) and
  400. (upper(targetinfos[t]^.shortname)=hs) then
  401. begin
  402. set_target_by_string:=set_target(t);
  403. exit;
  404. end;
  405. end;
  406. function set_target_asm_by_string(const s : string) : boolean;
  407. var
  408. hs : string;
  409. t : tasm;
  410. begin
  411. set_target_asm_by_string:=false;
  412. { this should be case insensitive !! PM }
  413. hs:=upper(s);
  414. for t:=low(tasm) to high(tasm) do
  415. if assigned(asminfos[t]) and
  416. (asminfos[t]^.idtxt=hs) then
  417. begin
  418. set_target_asm_by_string:=set_target_asm(t);
  419. exit;
  420. end;
  421. end;
  422. procedure UpdateAlignment(var d:talignmentinfo;const s:talignmentinfo);
  423. begin
  424. with d do
  425. begin
  426. { general update rules:
  427. minimum: if higher then update
  428. maximum: if lower then update or if undefined then update }
  429. if s.procalign>procalign then
  430. procalign:=s.procalign;
  431. if s.loopalign>loopalign then
  432. loopalign:=s.loopalign;
  433. if s.jumpalign>jumpalign then
  434. jumpalign:=s.jumpalign;
  435. if s.constalignmin>constalignmin then
  436. constalignmin:=s.constalignmin;
  437. if (constalignmax=0) or
  438. ((s.constalignmax>0) and (s.constalignmax<constalignmax)) then
  439. constalignmax:=s.constalignmax;
  440. if s.varalignmin>varalignmin then
  441. varalignmin:=s.varalignmin;
  442. if (varalignmax=0) or
  443. ((s.varalignmax>0) and (s.varalignmax<varalignmax)) then
  444. varalignmax:=s.varalignmax;
  445. if s.localalignmin>localalignmin then
  446. localalignmin:=s.localalignmin;
  447. if (localalignmax=0) or
  448. ((s.localalignmax>0) and (s.localalignmax<localalignmax)) then
  449. localalignmax:=s.localalignmax;
  450. if s.recordalignmin>recordalignmin then
  451. recordalignmin:=s.recordalignmin;
  452. if (recordalignmax=0) or
  453. ((s.recordalignmax>0) and (s.recordalignmax<recordalignmax)) then
  454. recordalignmax:=s.recordalignmax;
  455. if (maxCrecordalign=0) or
  456. ((s.maxCrecordalign>0) and (s.maxCrecordalign<maxCrecordalign)) then
  457. maxCrecordalign:=s.maxCrecordalign;
  458. end;
  459. end;
  460. {****************************************************************************
  461. Target registration
  462. ****************************************************************************}
  463. procedure RegisterTarget(const r:tsysteminfo);
  464. var
  465. t : tsystem;
  466. begin
  467. t:=r.system;
  468. if assigned(targetinfos[t]) then
  469. writeln('Warning: Target is already registered!')
  470. else
  471. Getmem(targetinfos[t],sizeof(tsysteminfo));
  472. targetinfos[t]^:=r;
  473. end;
  474. procedure RegisterRes(const r:tresinfo);
  475. var
  476. t : tres;
  477. begin
  478. t:=r.id;
  479. if assigned(resinfos[t]) then
  480. writeln('Warning: resourcecompiler is already registered!')
  481. else
  482. Getmem(resinfos[t],sizeof(tresinfo));
  483. resinfos[t]^:=r;
  484. end;
  485. procedure RegisterAr(const r:tarinfo);
  486. var
  487. t : tar;
  488. begin
  489. t:=r.id;
  490. if assigned(arinfos[t]) then
  491. writeln('Warning: ar is already registered!')
  492. else
  493. Getmem(arinfos[t],sizeof(tarinfo));
  494. arinfos[t]^:=r;
  495. end;
  496. procedure RegisterExternalLinker(var system_info: tsysteminfo; c:TAbstractLinkerClass);
  497. begin
  498. system_info.linkextern := c;
  499. end;
  500. procedure RegisterInternalLinker(var system_info : tsysteminfo; c:TAbstractLinkerClass);
  501. begin
  502. system_info.link := c;
  503. end;
  504. procedure DeregisterInfos;
  505. var
  506. assem : tasm;
  507. target : tsystem;
  508. ar : tar;
  509. res : tres;
  510. begin
  511. for target:=low(tsystem) to high(tsystem) do
  512. if assigned(targetinfos[target]) then
  513. begin
  514. freemem(targetinfos[target],sizeof(tsysteminfo));
  515. targetinfos[target]:=nil;
  516. end;
  517. for assem:=low(tasm) to high(tasm) do
  518. if assigned(asminfos[assem]) then
  519. begin
  520. freemem(asminfos[assem],sizeof(tasminfo));
  521. asminfos[assem]:=nil;
  522. end;
  523. for ar:=low(tar) to high(tar) do
  524. if assigned(arinfos[ar]) then
  525. begin
  526. freemem(arinfos[ar],sizeof(tarinfo));
  527. arinfos[ar]:=nil;
  528. end;
  529. for res:=low(tres) to high(tres) do
  530. if assigned(resinfos[res]) then
  531. begin
  532. freemem(resinfos[res],sizeof(tresinfo));
  533. resinfos[res]:=nil;
  534. end;
  535. end;
  536. {****************************************************************************
  537. Initialization of default target
  538. ****************************************************************************}
  539. procedure default_target(t:tsystem);
  540. begin
  541. set_target(t);
  542. if source_info.name='' then
  543. source_info:=target_info;
  544. end;
  545. procedure set_source_info(const ti : tsysteminfo);
  546. begin
  547. { can't use message() here (PFV) }
  548. if source_info.name<>'' then
  549. Writeln('Warning: Source OS Redefined!');
  550. source_info:=ti;
  551. end;
  552. procedure InitSystems;
  553. begin
  554. { Now default target, this is dependent on the target cpu define,
  555. when the define is the same as the source cpu then we use the source
  556. os, else we pick a default }
  557. {$ifdef i386}
  558. {$ifdef cpu86}
  559. default_target(source_info.system);
  560. {$else cpu86}
  561. {$ifdef linux}
  562. default_target(system_i386_linux);
  563. {$endif}
  564. {$ifdef freebsd}
  565. default_target(system_i386_freebsd);
  566. {$endif}
  567. {$endif cpu86}
  568. {$endif i386}
  569. {$ifdef x86_64}
  570. {$ifdef cpux86_64}
  571. default_target(source_info.system);
  572. {$define source_system_set}
  573. {$else cpux86_64}
  574. {$ifdef linux}
  575. default_target(system_x86_64_linux);
  576. {$define source_system_set}
  577. {$endif}
  578. {$ifdef freebsd}
  579. default_target(system_x86_64_freebsd);
  580. {$define source_system_set}
  581. {$endif}
  582. { default is linux }
  583. {$ifndef source_system_set}
  584. default_target(system_x86_64_linux);
  585. {$endif source_system_set}
  586. {$endif cpux86_64}
  587. {$endif x86_64}
  588. {$ifdef m68k}
  589. {$ifdef cpu68}
  590. default_target(source_info.target);
  591. {$else cpu68}
  592. default_target(system_m68k_linux);
  593. {$endif cpu68}
  594. {$endif m68k}
  595. {$ifdef alpha}
  596. {$ifdef cpualpha}
  597. default_target(source_info.system);
  598. {$else cpualpha}
  599. default_target(system_alpha_linux);
  600. {$endif cpualpha}
  601. {$endif alpha}
  602. {$ifdef powerpc}
  603. {$ifdef cpupowerpc}
  604. default_target(source_info.system);
  605. {$else cpupowerpc}
  606. default_target(system_powerpc_linux);
  607. {$endif cpupowerpc}
  608. {$endif powerpc}
  609. {$ifdef sparc}
  610. {$ifdef cpusparc}
  611. default_target(source_info.system);
  612. {$else cpusparc}
  613. default_target(system_sparc_linux);
  614. {$endif cpusparc}
  615. {$endif sparc}
  616. {$ifdef arm}
  617. {$ifdef cpuarm}
  618. default_target(source_info.system);
  619. {$else cpuarm}
  620. default_target(system_arm_linux);
  621. {$endif cpuarm}
  622. {$endif arm}
  623. end;
  624. initialization
  625. source_info.name:='';
  626. finalization
  627. DeregisterInfos;
  628. end.
  629. {
  630. $Log$
  631. Revision 1.98 2004-12-12 00:35:19 florian
  632. * check if the selected assembler supports current target improved
  633. Revision 1.97 2004/12/12 00:31:52 florian
  634. * check if the selected assembler supports current target
  635. Revision 1.96 2004/11/08 22:09:59 peter
  636. * tvarsym splitted
  637. Revision 1.95 2004/11/01 15:42:00 florian
  638. * default target for x86_64 is linux
  639. Revision 1.94 2004/10/31 19:09:54 peter
  640. * default paths fixed
  641. Revision 1.93 2004/10/25 15:38:41 peter
  642. * heap and heapsize removed
  643. * checkpointer fixes
  644. Revision 1.92 2004/09/04 21:18:47 armin
  645. * target netwlibc added (libc is preferred for newer netware versions)
  646. Revision 1.91 2004/06/29 21:00:08 peter
  647. * only enable dwarf for supported platforms
  648. Revision 1.90 2004/06/20 08:55:30 florian
  649. * logs truncated
  650. Revision 1.89 2004/06/16 20:07:10 florian
  651. * dwarf branch merged
  652. Revision 1.88 2004/05/20 21:54:33 florian
  653. + <pointer> - <pointer> result is divided by the pointer element size now
  654. this is delphi compatible as well as resulting in the expected result for p1+(p2-p1)
  655. Revision 1.87.2.6 2004/05/18 20:27:44 marco
  656. * initsystems fix
  657. Revision 1.87.2.5 2004/05/11 16:57:20 marco
  658. * freebsd target
  659. Revision 1.87.2.4 2004/05/10 21:28:34 peter
  660. * section_smartlink enabled for gas under linux
  661. }