mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 17:48:46 +02:00
* patch from yury to warn about wrong warning of unsupported apptype
git-svn-id: trunk@1321 -
This commit is contained in:
parent
ab3bc45fa4
commit
f916ea20b3
@ -223,7 +223,7 @@ implementation
|
||||
var
|
||||
hs : string;
|
||||
begin
|
||||
if not (target_info.system in [system_i386_win32,system_i386_os2,
|
||||
if not (target_info.system in system_all_windows + [system_i386_os2,
|
||||
system_i386_emx, system_powerpc_macos]) then
|
||||
Message(scan_w_app_type_not_support);
|
||||
if not current_module.in_global then
|
||||
|
@ -325,6 +325,9 @@ interface
|
||||
system_x86_6432_linux];
|
||||
{ all real windows systems, no cripple ones like wince, wdosx et. al. }
|
||||
system_windows : set of tsystem = [system_i386_win32,system_x86_64_win64,system_ia64_win64];
|
||||
{ all windows systems }
|
||||
system_all_windows : set of tsystem = [system_i386_win32,system_x86_64_win64,system_ia64_win64,
|
||||
system_arm_wince,system_i386_wince];
|
||||
|
||||
cpu2str : array[TSystemCpu] of string =
|
||||
('','i386','m68k','alpha','powerpc','sparc','vm','ia64','x86_64',
|
||||
|
Loading…
Reference in New Issue
Block a user