> currently gcc-4.3 fails to build on m68k: > > libtool: compile: /build/buildd/gcc-4.3-4.3-20080112/build/./gcc/xgcc > -B/build/buildd/gcc-4.3-4.3-20080112/build/./gcc/ -B/usr/m68k-linux-gnu/bin/ > -B/usr/m68k-linux-gnu/lib/ -isystem /usr/m68k-linux-gnu/include -isystem > /usr/m68k-linux-gnu/sys-include -DHAVE_CONFIG_H -I. -I../../../src/libffi -I. > -I. -I../../../src/libffi/include -Iinclude -I../../../src/libffi/src -Wall > -g -fexceptions -O2 -g -g -O2 -MT src/m68k/ffi.lo -MD -MP -MF > src/m68k/.deps/ffi.Tpo -c ../../../src/libffi/src/m68k/ffi.c -fPIC -DPIC -o > src/m68k/.libs/ffi.o > ../../../src/libffi/src/m68k/ffi.c:13:26: error: asm/cachectl.h: No such file > or directory > ../../../src/libffi/src/m68k/ffi.c: In function 'ffi_prep_closure_loc': > ../../../src/libffi/src/m68k/ffi.c:269: error: 'FLUSH_SCOPE_LINE' undeclared > (first use in this function) > ../../../src/libffi/src/m68k/ffi.c:269: error: (Each undeclared identifier is > reported only once > ../../../src/libffi/src/m68k/ffi.c:269: error: for each function it appears > in.) > ../../../src/libffi/src/m68k/ffi.c:270: error: 'FLUSH_CACHE_BOTH' undeclared > (first use in this function) > make[6]: *** [src/m68k/ffi.lo] Error 1
Odd - it did build OK on hobbes (which has asm/cachectl.h installed as per Geert's suggestion). Only it's not the latest version. Shall I upload anyway? We need a fixed kernel headers package in the long run. In the short term, make sure the attached header is installed in /usr/include/asm/ ... Michael
#ifndef _M68K_CACHECTL_H #define _M68K_CACHECTL_H /* Definitions for the cacheflush system call. */ #define FLUSH_SCOPE_LINE 1 /* Flush a cache line */ #define FLUSH_SCOPE_PAGE 2 /* Flush a page */ #define FLUSH_SCOPE_ALL 3 /* Flush the whole cache -- superuser only */ #define FLUSH_CACHE_DATA 1 /* Writeback and flush data cache */ #define FLUSH_CACHE_INSN 2 /* Flush instruction cache */ #define FLUSH_CACHE_BOTH 3 /* Flush both caches */ #endif /* _M68K_CACHECTL_H */