mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 14:47:55 +02:00
* ensure the LLVM-based compiler does not try to load units compiled with a
non-LLVM-base compiler and vice versa (caused internal errors, because the LLVM compiler uses different nodes, and these are saved in the PPUs for inline routines) git-svn-id: branches/debug_eh@42196 -
This commit is contained in:
parent
21bc37db44
commit
9a327f1fcd
@ -336,6 +336,11 @@ var
|
||||
exit;
|
||||
end;
|
||||
{$endif i8086}
|
||||
if {$ifdef llvm}not{$endif}(mf_llvm in moduleflags) then
|
||||
begin
|
||||
Message(unit_u_ppu_llvm_mismatch,@queuecomment);
|
||||
exit;
|
||||
end;
|
||||
result:=true;
|
||||
end;
|
||||
|
||||
@ -1013,6 +1018,9 @@ var
|
||||
if current_settings.x86memorymodel in [mm_tiny,mm_small,mm_medium] then
|
||||
include(moduleflags,mf_i8086_ss_equals_ds);
|
||||
{$endif i8086}
|
||||
{$ifdef llvm}
|
||||
include(moduleflags,mf_llvm);
|
||||
{$endif}
|
||||
|
||||
old_docrc:=ppufile.do_crc;
|
||||
ppufile.do_crc:=false;
|
||||
|
@ -376,7 +376,8 @@ interface
|
||||
mf_i8086_cs_equals_ds, { this unit uses an i8086 memory model with CS=DS (i.e. tiny) }
|
||||
mf_i8086_ss_equals_ds, { this unit uses an i8086 memory model with SS=DS (i.e. tiny, small or medium) }
|
||||
mf_package_deny, { this unit must not be part of a package }
|
||||
mf_package_weak { this unit may be completely contained in a package }
|
||||
mf_package_weak, { this unit may be completely contained in a package }
|
||||
mf_llvm { compiled for LLVM code generator, not compatible with regular compiler because of different nodes in inline functions }
|
||||
);
|
||||
tmoduleflags = set of tmoduleflag;
|
||||
|
||||
|
@ -3352,6 +3352,9 @@ cg_f_internal_type_does_not_match=10066_F_Internal type "$1" does not look as ex
|
||||
% and you didn't change the runtime library code, it's very likely that the runtime library
|
||||
% you're using doesn't match the compiler in use. If you changed the runtime library this error means
|
||||
% that you changed a type which the compiler needs for internal use and which needs to have a certain structure.
|
||||
unit_u_ppu_llvm_mismatch=10067_U_Skipping unit, PPU and compiler have to be both compiled with or without LLVM support
|
||||
% Units compiled by a compiler built with the LLVM code generator cannot be used with a regular compiler,
|
||||
% and vice versa.
|
||||
% \end{description}
|
||||
# EndOfTeX
|
||||
|
||||
|
@ -1000,6 +1000,7 @@ const
|
||||
unit_u_loading_from_package=10064;
|
||||
cg_f_internal_type_not_found=10065;
|
||||
cg_f_internal_type_does_not_match=10066;
|
||||
unit_u_ppu_llvm_mismatch=10067;
|
||||
option_usage=11000;
|
||||
option_only_one_source_support=11001;
|
||||
option_def_only_for_os2=11002;
|
||||
@ -1110,9 +1111,9 @@ const
|
||||
option_info=11024;
|
||||
option_help_pages=11025;
|
||||
|
||||
MsgTxtSize = 83374;
|
||||
MsgTxtSize = 83468;
|
||||
|
||||
MsgIdxMax : array[1..20] of longint=(
|
||||
28,106,351,126,99,61,142,34,221,67,
|
||||
28,106,351,126,99,61,142,34,221,68,
|
||||
62,20,30,1,1,1,1,1,1,1
|
||||
);
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user