Skip to content

Instantly share code, notes, and snippets.

@diorahman
Last active March 15, 2023 12:36
Show Gist options
  • Save diorahman/6eb657e71f5d5c03175b to your computer and use it in GitHub Desktop.
Save diorahman/6eb657e71f5d5c03175b to your computer and use it in GitHub Desktop.
Run linux kernel make menuconfig on osx yosemite

osx

install ncurses, via $ brew install ncurses

edit the scripts/kconfig/Makefile, put HOSTLOADLIBES_mconf += -L/usr/local/opt/ncurses/lib -ltinfo, where the libtinfo.dylib is just a symlink to libncurses.dylib

hit the scripts/kconfig/lxdialog/check-lxdialog.sh, this is ugly!

#!/bin/sh
# Check ncurses compatibility

# What library to link
ldflags()
{
	for ext in so a dylib ; do
		for lib in ncursesw ncurses curses ; do
			$cc -print-file-name=lib${lib}.${ext} | grep -q /
			if [ $? -eq 0 ]; then
				echo "-L/usr/local/opt/ncurses/lib -l${lib}"
				exit
			fi
		done
	done
	exit 1
}

# Where is ncurses.h?
ccflags()
{
  include='\\"ncursesw/ncurses.h\\"'
  echo "-I/usr/local/opt/ncurses/include -DCURSES_LOC=${include}"
}

# Temp file, try to clean up after us
tmp=.lxdialog.tmp
trap "rm -f $tmp" 0 1 2 3 15

# Check if we can link to ncurses
check() {

echo $cc

        gcc -I/usr/local/opt/ncurses/include -DCURSES_LOC='"ncursesw/ncurses.h"' -DLOCALE -DKBUILD_NO_NLS -x c - -o $tmp 2>/dev/null <<'EOF'
#include "ncurses.h"
main() {}
EOF
	if [ $? != 0 ]; then
	    echo " *** Unable to find the ncurses libraries or the"       1>&2
	    echo " *** required header files."                            1>&2
	    echo " *** 'make menuconfig' requires the ncurses libraries." 1>&2
	    echo " *** "                                                  1>&2
	    echo " *** Install ncurses (ncurses-devel) and try again."    1>&2
	    echo " *** "                                                  1>&2
	    exit 1
	fi
}

usage() {
	printf "Usage: $0 [-check compiler options|-ccflags|-ldflags compiler options]\n"
}

if [ $# -eq 0 ]; then
	usage
	exit 1
fi

cc=""
case "$1" in
	"-check")
		shift
		cc="$@"
		check
		;;
	"-ccflags")
		ccflags
		;;
	"-ldflags")
		shift
		cc="$@"
		ldflags
		;;
	"*")
		usage
		exit 1
		;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment