[m-rev.] for review: Uncomment foreign code definition for clock/3.

Julien Fischer jfischer at opturion.com
Wed May 25 12:00:26 AEST 2016


On Wed, 25 May 2016, Paul Bone wrote:

> On Wed, May 25, 2016 at 09:53:01AM +0800, Sebastian Godelet wrote:
>> Hello,
>>
>> Actually I can answer those questions :)
>>
>>> On Wed, 25 May 2016, Paul Bone wrote:

>>>> I'm more concerned about the XXX referring to System.dll.  Is a
>>>> references list a .NET thing?  Is adding System.dll a problem?
>>
>> A reference list is a property of a .NET assembly, it is used by the type resolver to load the appropriate assembly for a given type,
>> This list is generated at compile time. So System.Diagnostics is not included in the mscorlib (.NET standard library), but rather the
>> System.dll assembly. Both the mono and .NET compiler are clever enough to resolve framework assemblies automatically. During runtime, the System.dll is resolved from the global assembly cache and for mono using a similar mechanism.
>> So we do indeed not have to worry about this. Reference lists are only a thing for non-framework assemblies like mer_std.dll, which are already handled accordingly.
>>
>
> Ah cool, it sounds like Julien's guess is correct that this was about the
> old IL backend or maybe even the .NET system before it was released.

If you can call 'git blame' and 'looking at the date' guessing!

Julien.


More information about the reviews mailing list