|
Lines 5681-5695
Link Here
|
| 5681 |
# compiler, etc., but we need a build compiler to generate parts of the source. |
5681 |
# compiler, etc., but we need a build compiler to generate parts of the source. |
| 5682 |
|
5682 |
|
| 5683 |
|
5683 |
|
|
|
5684 |
: ${BUILD_CC:='${CC}'} |
| 5685 |
: ${BUILD_CPP:='${CPP}'} |
| 5686 |
: ${BUILD_CFLAGS:='${CFLAGS}'} |
| 5687 |
: ${BUILD_CPPFLAGS:='${CPPFLAGS}'} |
| 5688 |
: ${BUILD_LDFLAGS:='${LDFLAGS}'} |
| 5689 |
: ${BUILD_LIBS:='${LIBS}'} |
| 5690 |
: ${BUILD_EXEEXT:='$x'} |
| 5691 |
: ${BUILD_OBJEXT:='o'} |
| 5692 |
|
| 5684 |
if test "$cross_compiling" = yes ; then |
5693 |
if test "$cross_compiling" = yes ; then |
| 5685 |
|
5694 |
|
| 5686 |
# defaults that we might want to override |
|
|
| 5687 |
: ${BUILD_CFLAGS:=''} |
| 5688 |
: ${BUILD_CPPFLAGS:=''} |
| 5689 |
: ${BUILD_LDFLAGS:=''} |
| 5690 |
: ${BUILD_LIBS:=''} |
| 5691 |
: ${BUILD_EXEEXT:='$x'} |
| 5692 |
: ${BUILD_OBJEXT:='o'} |
| 5693 |
|
5695 |
|
| 5694 |
|
5696 |
|
| 5695 |
# Check whether --with-build-cc was given. |
5697 |
# Check whether --with-build-cc was given. |
|
Lines 5816-5830
Link Here
|
| 5816 |
{ (exit 1); exit 1; }; } |
5818 |
{ (exit 1); exit 1; }; } |
| 5817 |
fi |
5819 |
fi |
| 5818 |
|
5820 |
|
| 5819 |
else |
|
|
| 5820 |
: ${BUILD_CC:='${CC}'} |
| 5821 |
: ${BUILD_CPP:='${CPP}'} |
| 5822 |
: ${BUILD_CFLAGS:='${CFLAGS}'} |
| 5823 |
: ${BUILD_CPPFLAGS:='${CPPFLAGS}'} |
| 5824 |
: ${BUILD_LDFLAGS:='${LDFLAGS}'} |
| 5825 |
: ${BUILD_LIBS:='${LIBS}'} |
| 5826 |
: ${BUILD_EXEEXT:='$x'} |
| 5827 |
: ${BUILD_OBJEXT:='o'} |
| 5828 |
fi |
5821 |
fi |
| 5829 |
|
5822 |
|
| 5830 |
|
5823 |
|