Displaying 6 results from an estimated 6 matches for "ac_config_makefile".
2008 Apr 01
1
[LLVMdev] [PATCH] Running SPEC benchmark with objdir != srcdir
...62DB 4AA7 B196 4A62
PGP Public Key from: keyserver.pgp.com
-------------- next part --------------
Index: autoconf/configure.ac
===================================================================
--- autoconf/configure.ac (revision 49011)
+++ autoconf/configure.ac (working copy)
@@ -31,6 +31,7 @@
AC_CONFIG_MAKEFILE(External/Povray/Makefile)
AC_CONFIG_MAKEFILE(External/SPEC/Makefile)
AC_CONFIG_MAKEFILE(External/SPEC/Makefile.spec)
+AC_CONFIG_MAKEFILE(External/SPEC/Makefile.spec.config)
AC_CONFIG_MAKEFILE(External/SPEC/Makefile.spec2006)
AC_CONFIG_MAKEFILE(External/SPEC/Makefile.spec2000)
AC_CONFIG_MAKEFIL...
2006 Apr 19
0
[LLVMdev] creating a project from sample project
Hi Ryan,
The output from autoconf doesn't look familiar (but then, does it
ever?).
Note that it thinks that AC_CONFIG_MAKEFILE isn't defined which is
likely if you didn't get the LLVM_SRC_ROOT correct. Here's the only
things I can think of:
1. You also need to cvs update llvm/autoconf/m4 to get the new
definition of LLVM_CONFIG_PROJECT.
2. You typed in the LLVM source root incorrectly when prompted. for it....
2006 Apr 19
2
[LLVMdev] creating a project from sample project
...4.1.
/usr/share/aclocal/gob2.m4:7: warning: underquoted definition of GOB2_HOOK
run info '(automake)Extending aclocal'
or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
Regenerating configure with autoconf 2.5x
configure.ac:25: error: possibly undefined macro: AC_CONFIG_MAKEFILE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
autoconf failed
Regards,
Ryan
Reid Spencer wrote:
> Ryan,
>
> Rather than fix the documentation to match reality, I decided to fix
> reality to match the documentation....
2006 Apr 20
1
[LLVMdev] creating a project from sample project
...of the llvm src that is checked into cvs, or
can I just copy the new sample project from cvs and use it with llvm 1.6?
Thanks,
Ryan
Reid Spencer wrote:
> Hi Ryan,
>
> The output from autoconf doesn't look familiar (but then, does it
> ever?).
>
> Note that it thinks that AC_CONFIG_MAKEFILE isn't defined which is
> likely if you didn't get the LLVM_SRC_ROOT correct. Here's the only
> things I can think of:
>
> 1. You also need to cvs update llvm/autoconf/m4 to get the new
> definition of LLVM_CONFIG_PROJECT.
>
> 2. You typed in the LLVM source root...
2006 Apr 18
0
[LLVMdev] creating a project from sample project
Ryan,
Rather than fix the documentation to match reality, I decided to fix
reality to match the documentation. I have just committed (CVS head)
changes to the sample project's AutoRegen.sh script that will prompt the
user for the path to the LLVM source root and the LLVM object root, if
it can't automatically determine the location (because your project is
not located in the llvm/projects
2006 Apr 18
2
[LLVMdev] creating a project from sample project
Thank you for the response. I guess the only thing that is confusing is
that the LLVM documentation, at http://llvm.org/docs/Projects.html under
the "Create a Project from the Sample Project" heading, indicates that
(1) you can place your project *anywhere* you want, and (2) that you are
supposed to use the AutoRegen.sh script as is. However, that seems not
to be the case.
The