From a830485c48e07f4726f48af142b71f676cc9f8d6 Mon Sep 17 00:00:00 2001 From: deadwood Date: Sat, 22 Oct 2016 07:37:01 +0000 Subject: [PATCH] configure: use gcc frontend for C preprocessor rather then cpp directly Tool can expect the processor to handle multiple input files. This is supported by gcc frontend but not by cpp itself. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@53015 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 8e1e76a1de..33e2878844 100755 --- a/configure +++ b/configure @@ -7565,7 +7565,7 @@ case "$aros_toolchain" in *gnu*) toolchain_c_compiler="gcc" toolchain_cxx_compiler="g++" - toolchain_cpp_preprocessor="cpp" + toolchain_cpp_preprocessor="gcc -E" toolchain_ld="ld" toolchain_as="as" toolchain_ar="ar" diff --git a/configure.in b/configure.in index e69a989d39..4c489c155d 100644 --- a/configure.in +++ b/configure.in @@ -708,7 +708,7 @@ case "$aros_toolchain" in *gnu*) toolchain_c_compiler="gcc" toolchain_cxx_compiler="g++" - toolchain_cpp_preprocessor="cpp" + toolchain_cpp_preprocessor="gcc -E" toolchain_ld="ld" toolchain_as="as" toolchain_ar="ar" -- 2.11.4.GIT