186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
else
PLATFORM="${FORCE_PLATFORM}"
fi
export PLATFORM
# Set platform specific configuration
case "${PLATFORM}" in
solaris2*)
LDFLAGS="${LDFLAGS} -static-libgcc"
export LDFLAGS
;;
esac
# Build all appropriate directories
faileddirs=""
|
|
|
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
else
PLATFORM="${FORCE_PLATFORM}"
fi
export PLATFORM
# Set platform specific configuration
case "${PLATFORM}" in
solaris2*|linux-unknown-arm)
LDFLAGS="${LDFLAGS} -static-libgcc"
export LDFLAGS
;;
esac
# Build all appropriate directories
faileddirs=""
|