Source: kalign Version: 1:2.03+20110620-3 Tags: patch upstream User: helm...@debian.org Usertags: rebootstrap
kalign fails to cross build from source, because it uses the build architecture compiler (hard coded in Makefile.in). Its ./configure correctly detects the cross compiler. It just fails to propagate the value to the Makefile. The attached patch fixes that. Please consider applying it. Helmut
Index: kalign-2.03+20110620/Makefile.in =================================================================== --- kalign-2.03+20110620.orig/Makefile.in +++ kalign-2.03+20110620/Makefile.in @@ -1,6 +1,6 @@ PREFIX = /usr/local/bin TEST = test/ -CC = gcc +CC = @CC@ CFLAGS += -O9 -Wall DEBUGFLAGS = -ggdb -Wall