Uh oh!
There was an error while loading. Please reload this page.
NativeAOT for FreeBSD - #80323
Conversation
Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com>
Thefrank
commented
Jan 15, 2023
Test failure is unrelated(?). Side question: Will there be tags for the new SDK that is being used? the |
Yes, it is #78454 and #73721. You can mark your PR ready for review.
This gives us the commit info: $ cd runtime
$ ./dotnet.sh --info
.NET SDK:
Version: 8.0.100-alpha.1.23061.8
Commit: c8d103ed3c <---------- this is SDK commit
...
Host:
Version: 8.0.0-alpha.1.23058.2
Architecture: arm64
Commit: 5da4a9e919 <---------- this is Runtime commit
# extract commit in script
$ SDK_COMMIT="$(.dotnet/dotnet --info | grep -A3 'SDK:'| grep Commit |while IFS=\ read tag hash;doecho"$hash"; done)"$ RUNTIME_COMMIT="$(.dotnet/dotnet --info | grep -A3 'Host:'| grep Commit |while IFS=\ read tag hash;doecho"$hash"; done)" |
…o.cs Co-authored-by: Robin Sue <robinsue@live.de>
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Co-authored-by: Jan Kotas <jkotas@microsoft.com>
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Co-authored-by: Jan Kotas <jkotas@microsoft.com>
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
…o.cs Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com>
jkotas
commented
Jan 18, 2023
Need to wait for dotnet/sdk#29800 to be merged first before merging this one. |
jkotas
commented
Jan 19, 2023
Thank you! |
* add inotify for FreeBSD during linking * remove FreeBSD for now * netstandard does not understand FreeBSD * add FreeBSD platform to HostModel Tests * add inotify for FreeBSD during linking * remove FreeBSD for now * netstandard does not understand FreeBSD * add FreeBSD platform to HostModel Tests * Use Clang12, update LinkerArg * WIP FreeBSD NativeAOT * add inotify for FreeBSD during linking * remove FreeBSD for now * netstandard does not understand FreeBSD * add FreeBSD platform to HostModel Tests * WIP FreeBSD NativeAOT * remove FreeBSD for now * add FreeBSD platform to HostModel Tests * Use Clang12, update LinkerArg * Update JITTools and ObjWriter for FreeBSD-x64 * fixes for tests * fixes for tests * add TargetTriple for FreeBSD * Some changes from feedback, remove out of scope * HostModel back to netstandard2.0 * Update src/coreclr/CMakeLists.txt * Publish crossgen2 as single-file on cross-os * pass NativeAotSupported to MSBuild crossgen2 tasks * Can't use NativeAOT in source build yet Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com> * Update private string HostFxr and HostPolicy * Fix private string HostPolicy * Apply suggestions from code review Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com> Co-authored-by: Michal Strehovský <MichalStrehovsky@users.noreply.github.com> Co-authored-by: Jan Kotas <jkotas@microsoft.com> Co-authored-by: Robin Sue <robinsue@live.de>
Initial NativeAOT for FreeBSD work