mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 20:29:23 +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
|
end
|
||||||
else if target_info.system in (systems_linux+systems_android) then
|
else if target_info.system in (systems_linux+systems_android) then
|
||||||
llvm_target_name:=llvm_target_name+'-unknown-linux'
|
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
|
begin
|
||||||
{ WinCE isn't supported (yet) by llvm, but if/when added this is
|
{ WinCE isn't supported (yet) by llvm, but if/when added this is
|
||||||
presumably how they will differentiate it }
|
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+'-pc';
|
||||||
llvm_target_name:=llvm_target_name+'-win32'
|
llvm_target_name:=llvm_target_name+'-windows-msvc19'
|
||||||
end
|
end
|
||||||
else if target_info.system in systems_freebsd then
|
else if target_info.system in systems_freebsd then
|
||||||
llvm_target_name:=llvm_target_name+'-freebsd'
|
llvm_target_name:=llvm_target_name+'-freebsd'
|
||||||
|
Loading…
Reference in New Issue
Block a user