dotnet / corert

This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
http://dot.net
MIT License
2.91k stars 510 forks source link

GitHub actions - clang fails on Ubuntu #8367

Closed andreakarasho closed 3 years ago

andreakarasho commented 3 years ago

I'm playing a little bit with gh actions. To compile the application i need to setup 3 envs [windows, macOS, linux].

On Ubuntu i get this error when publishing the file:

/usr/bin/clang
  Generating native code
  /usr/bin/ld: cannot find -lgssapi_krb5
MichalStrehovsky commented 3 years ago

Make sure to install the prerequisites.

libkrb5-dev is the missing prerequisite.

andreakarasho commented 3 years ago

i feel so dumb. Worked! thank you