mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 04:29:20 +02:00
* fixed i386-wince flags.
* enabled internal linker for i386-wince. git-svn-id: trunk@5742 -
This commit is contained in:
parent
ff37ef8786
commit
1044e84ea3
@ -210,7 +210,7 @@ unit i_win;
|
|||||||
system : system_i386_wince;
|
system : system_i386_wince;
|
||||||
name : 'WinCE for i386';
|
name : 'WinCE for i386';
|
||||||
shortname : 'WinCE';
|
shortname : 'WinCE';
|
||||||
flags : [tf_files_case_aware,tf_has_dllscanner,tf_use_function_relative_addresses{,tf_winlikewidestring}];
|
flags : [tf_files_case_aware,tf_use_function_relative_addresses{,tf_winlikewidestring},tf_smartlink_sections];
|
||||||
cpu : cpu_i386;
|
cpu : cpu_i386;
|
||||||
unit_env : '';
|
unit_env : '';
|
||||||
extradefines : 'UNDER_CE;WINDOWS;UNICODE';
|
extradefines : 'UNDER_CE;WINDOWS;UNICODE';
|
||||||
@ -239,7 +239,7 @@ unit i_win;
|
|||||||
assemextern : as_gas;
|
assemextern : as_gas;
|
||||||
link : nil;
|
link : nil;
|
||||||
linkextern : nil;
|
linkextern : nil;
|
||||||
ar : ar_gnu_ar;
|
ar : ar_gnu_ar_scripted;
|
||||||
res : res_gnu_windres;
|
res : res_gnu_windres;
|
||||||
dbg : dbg_stabs;
|
dbg : dbg_stabs;
|
||||||
script : script_dos;
|
script : script_dos;
|
||||||
|
@ -1722,6 +1722,7 @@ initialization
|
|||||||
RegisterTarget(system_i386_win32_info);
|
RegisterTarget(system_i386_win32_info);
|
||||||
{ WinCE }
|
{ WinCE }
|
||||||
RegisterExternalLinker(system_i386_wince_info,TExternalLinkerWin);
|
RegisterExternalLinker(system_i386_wince_info,TExternalLinkerWin);
|
||||||
|
RegisterInternalLinker(system_i386_wince_info,TInternalLinkerWin);
|
||||||
RegisterImport(system_i386_wince,TImportLibWin);
|
RegisterImport(system_i386_wince,TImportLibWin);
|
||||||
RegisterExport(system_i386_wince,TExportLibWin);
|
RegisterExport(system_i386_wince,TExportLibWin);
|
||||||
RegisterDLLScanner(system_i386_wince,TDLLScannerWin);
|
RegisterDLLScanner(system_i386_wince,TDLLScannerWin);
|
||||||
|
Loading…
Reference in New Issue
Block a user