autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: release Autoconf?


From: Akim Demaille
Subject: Re: release Autoconf?
Date: 12 May 2001 15:27:17 +0200
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley)

>>>>> "Ralf" == Ralf Corsepius <address@hidden> writes:

Ralf> I think excluding /lib/cpp from the list to check for CPP for
Ralf> cross compiliation would be a feasable way.

OK, I can do that.

>> Look for $target dependent tools?

Ooops, sorry s/target/host/.

Ralf> Are you thinking about something in analogy to AC_CHECK_TOOL
Ralf> ($target-cpp or similar?). At least the gnu toolchain does not
Ralf> have such a beast, but it might be worth checking for in the
Ralf> cross compilation case.

Ralf> BTW: Why isn't 'cpp' on this list?

Yo que se :)

We inherited this from the past.


From

    # Double quotes because CPP needs to be expanded
    for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"

To

    # Double quotes because CPP needs to be expanded
    set X "$CC -E" "$CC -E -traditional-cpp" "$ac_tool_prefixcpp"
    test $cross_compiling || set "$@" /lib/cpp
    shift
    for CPP

?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]