comparison src/native-gcc.mk @ 3013:bcc26ffe9a0f

use variable for --host and --build configure arguments
author John W. Eaton <jwe@octave.org>
date Sun, 02 Jun 2013 12:40:32 -0400
parents 100e618349f7
children b6c7244a2f66
comparison
equal deleted inserted replaced
3012:100e618349f7 3013:bcc26ffe9a0f
31 31
32 # build GCC and support libraries 32 # build GCC and support libraries
33 mkdir '$(1).build' 33 mkdir '$(1).build'
34 cd '$(1).build' && '$(1)/configure' \ 34 cd '$(1).build' && '$(1)/configure' \
35 --target='$(TARGET)' \ 35 --target='$(TARGET)' \
36 --host='$(TARGET)' \ 36 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
37 --build="`config.guess`" \
38 --prefix='/usr' \ 37 --prefix='/usr' \
39 --libdir='/usr/lib' \ 38 --libdir='/usr/lib' \
40 --enable-languages='c,c++,objc,fortran' \ 39 --enable-languages='c,c++,objc,fortran' \
41 --enable-version-specific-runtime-libs \ 40 --enable-version-specific-runtime-libs \
42 --with-gcc \ 41 --with-gcc \