Created
March 4, 2023 17:24
-
-
Save anfernee/f0c740717e76a1f5e435fd6d1793eb92 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install the newest version of golang. | |
sudo add-apt-repository ppa:longsleep/golang-backports -y && sudo apt update && sudo apt install golang-go -y | |
# Install clang-11 and llvm-11 and make | |
sudo apt install clang-11 llvm-11 -y make | |
# Update the clang command used for test | |
export CLANG=clang-11 | |
export LLC=llc-11 | |
# Clone the upstream cilium. | |
mkdir upstream_cilium && cd upstream_cilium && git clone --recursive https://github.com/cilium/cilium.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment