added untested port of GNU lightning to ARM

This commit is contained in:
kr.angelov
2013-08-01 12:07:06 +00:00
parent 216f4b1c40
commit f1d407de09
7 changed files with 8595 additions and 2 deletions

View File

@@ -46,9 +46,11 @@ case "$target_cpu" in
x86_64) cpu=i386; AC_DEFINE(LIGHTNING_I386, 1,
[Define if lightning is targeting the x86 architecture]) ;;
sparc*) cpu=sparc; AC_DEFINE(LIGHTNING_SPARC, 1,
[Define if lightning is targeting the x86 architecture]) ;;
[Define if lightning is targeting the sparc architecture]) ;;
powerpc) cpu=ppc; AC_DEFINE(LIGHTNING_PPC, 1,
[Define if lightning is targeting the x86 architecture]) ;;
[Define if lightning is targeting the powerpc architecture]) ;;
arm*) cpu=arm; AC_DEFINE(LIGHTNING_ARM, 1,
[Define if lightning is targeting the arm architecture]) ;;
*) AC_MSG_ERROR([cpu $target_cpu not supported]) ;;
esac