mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 01:39:27 +02:00
* use same Windows platform name as clang
git-svn-id: trunk@44063 -
This commit is contained in:
parent
592df7fa59
commit
08f9ec98e5
@ -159,13 +159,13 @@ implementation
|
||||
end
|
||||
else if target_info.system in (systems_linux+systems_android) then
|
||||
llvm_target_name:=llvm_target_name+'-unknown-linux'
|
||||
else if target_info.system in systems_windows then
|
||||
else if target_info.system in systems_all_windows then
|
||||
begin
|
||||
{ WinCE isn't supported (yet) by llvm, but if/when added this is
|
||||
presumably how they will differentiate it }
|
||||
if not(target_info.system in [system_i386_wince,system_arm_wince]) then
|
||||
if target_info.system in systems_windows then
|
||||
llvm_target_name:=llvm_target_name+'-pc';
|
||||
llvm_target_name:=llvm_target_name+'-win32'
|
||||
llvm_target_name:=llvm_target_name+'-windows-msvc19'
|
||||
end
|
||||
else if target_info.system in systems_freebsd then
|
||||
llvm_target_name:=llvm_target_name+'-freebsd'
|
||||
|
Loading…
Reference in New Issue
Block a user