Changes between Version 1 and Version 2 of Ticket #69138, comment 21


Ignore:
Timestamp:
May 27, 2024, 3:49:32 PM (4 months ago)
Author:
mqudsi (Mahmoud Al-Qudsi)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #69138, comment 21

    v1 v2  
    3939---
    4040
    41 Edit: actually, looking at the linker error it seems that `rand` is only calling into rust's `std` and that's where the dynamic call to `_getentropy()` and `_clock_gettime()` is coming from, so does `std` just need to be patched in the `rust` port?
     41Edit: actually, looking at the linker error it seems that `rand` is only calling into rust's `std` and that's where the dynamic call to `_getentropy()` and `_clock_gettime()` is coming from, so does `std` just need to be patched in the `rust` port? I guess this makes it an actual defect with the rust port itself if calling into its standard library causes linker errors, rather than an issue with a 3rd-party crate.