KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
homebrew-public
★ 9
Open GitHub ↗
Compile Linux kernel on a Mac
Download README (.md)
Explore Similar Repositories
FIWARE-CKAN-Extensions
:
This repository includes the documentation and links to the different CKAN extensions developed within FIWARE
AzurePowerShell
:
Azure PowerShell scripts and code snipets
JDShop
:
仿京东在线购物商城(PHP实现 2016.06 - 2016.07)
security-projects
:
No description available.
PapajLang
:
:uk:🌐 Reverse Polish Notation (RPN) Calculator and interpreter of PapajScript language
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
homebrew-public
?
Download (.md)
# What? Files required to build Linux kernel on macOS. # How? Not that hard. Install all the GNU tools and make sure they're used: brew install findutils coreutils gnu-tar gnu-sed make export PATH="/usr/local/opt/findutils/libexec/gnubin:/usr/local/opt/coreutils/libexec/gnubin:/usr/local/opt/gnu-tar/libexec/gnubin:/usr/local/opt/gnu-sed/libexec/gnubin:/usr/local/opt/make/libexec/gnubin:$PATH" For `make menuconfig` you need ncurses: brew install ncurses export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/opt/ncurses/lib/pkgconfig" Install the `elf.h` header: brew install nsabovic/linuxonmac/elf-header Then build the kernel. `make menuconfig` should work. You may run into issues where kernel calls `/bin/false`, which won't work since macOS has it in `/usr/bin/false`. I suggest just replacing these calls in the `Makefile`s.