Displaying 2 results from an estimated 2 matches for "program_suffix".
2012 Sep 26
1
[LLVMdev] Add --program-prefix support with AC_CANONICAL_TARGET override.
...rom the configure command line.
--- background
LLVM autoconf/configure.ac uses the AC_CANONICAL_TARGET.
This rule adds a test that can set program_prefix=target if
--program-prefix is not specified on the configure line.
test -n "$target_alias" &&
test "$program_prefix$program_suffix$program_transform_name" = \
NONENONEs,x,x, &&
program_prefix=${target_alias}-[]dnl
./configure --target=blah
results in
program_prefix=blah
--- Proposed patch
The original patch has been updated to ignore the test added by
AC_CANONICAL_TARGET. Program prefix can only be set...
2008 Feb 10
0
[LLVMdev] semicolon breaking builds on llvm-gcc4.2 cygwin build for arm target 2.2prerelease2
...It might to be related these lines in the top level configure which contain
said semicolon:
- if test "$program_transform_name" = s,x,x,; then
- program_transform_name="*s,^,${program_prefix},; *
$program_transform_name"
- program_transform_name="*s,\$\$,${program_suffix},;*$program_transform_name"
Here is an example from *config.log * for* llvm-gcc4.2-2.2.source/**
host-i686-pc-cygwin/gcc* (fixincludes, libiberty and intl already were
'fixed' per my 'solution')
$ grep configure config.log |head -3
running configure, to aid debugging if con...