Dieter Baron | f631eb7 | 2013-06-09 14:14:30 +0200 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | DIR=tmp.$$ | ||||
4 | |||||
5 | mkdir -p $DIR/32 $DIR/64 | ||||
6 | |||||
7 | (cd $DIR/32; ../../../configure CFLAGS=-m32) | ||||
8 | (cd $DIR/64; ../../../configure CFLAGS=-m64) | ||||
9 | |||||
10 | diff -D __LP64__ $DIR/32/config.h $DIR/64/config.h > config.h | ||||
11 | |||||
12 | rm -r $DIR |