similar to: [LLVMdev] Makefiles get "dist" -- need your help!

Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] Makefiles get "dist" -- need your help!"

2006 Apr 11
0
[LLVMdev] make dist?
Hi Tanya, The first thing you need to understand is that there are multiple make targets to support this feature. I'll briefly describe each here so you have an overview and then delve into the details later. * distdir - builds the distribution directory from which the distribution will be packaged * dist - builds each of the distribution tarballs (tar.gz,
2015 Oct 06
0
Re: [PATCH 1/6] tests: use fake rhsrvany.exe
On Mon, Oct 05, 2015 at 05:05:32PM +0100, Richard W.M. Jones wrote: > On Mon, Oct 05, 2015 at 06:12:03PM +0300, Roman Kagan wrote: > > On Mon, Oct 05, 2015 at 02:17:52PM +0100, Richard W.M. Jones wrote: > > > This doesn't appear in EXTRA_DIST, so it won't be copied to the tarball. > > > > Didn't know that. How is the tarball generated, so that I can test
2005 Feb 14
1
[LLVMdev] Fix using old BUILD_OBJ_ROOT/BUILD_SRC_ROOT in 2 LLVM makefiles [PATCH]
I found use old BUILD_OBJ_ROOT/BUILD_SRC_ROOT in comment in llvm/Makefile.common and in llvm/projects/Stacker/test/Makefile code. I update it to PROJ_* in attached patches. Vladimir -------------- next part -------------- A non-text attachment was scrubbed... Name: Makefile.common.patch Type: application/octet-stream Size: 1081 bytes Desc: not available URL:
2004 Oct 26
1
[LLVMdev] dist-check implemented
My final foray into the makefiles for a while has been completed. The dist-check target is the golden nugget I was hoping to get out of automake. But, now LLVM Makefiles have it too. dist-check does the following: * builds everything with "check" to ensure the source of the distribution is sane, essentially "make check". * builds the distribution tar balls with
2004 Nov 18
1
[LLVMdev] IMPORTANT: Executables Built In New Location
Folks, If you're working from CVS sources and have updated recently, you should know that the Makefiles now place the tools in a different directory. This may affect your path. Three changes were made in resolving PR456: 1. $BUILD_OBJ_ROOT/lib/Debug --> $BUILD_OBJ_ROOT/Debug/lib 2. $BUILD_OBJ_ROOT/tools/Debug --> $BUILD_OBJ_ROOT/Debug/bin 3. Example programs are now placed in
2003 Dec 05
0
[LLVMdev] Re: Makefile.config&setenv
yue wrote: > hi, > about [LLVMdev] another question > > thanks > > yueqiang One other thing you might want to try is to put your object tree in a directory that is *not* inside of your source tree. Currently, we don't support using separate object trees that are subdirectories of the source tree. In other words: Will work: ========== SRC_ROOT=/home/yue/llvm
2006 Apr 11
3
[LLVMdev] make dist?
Reid, Could you explain in detail what make dist does? :) I'd like to see how it can be integrated into the release process. Thanks, Tanya
2009 Sep 29
1
Error (IMHO) with --with-doc option
Hi, I was trying to create complete rpm package for my system, containing dovecot 1.2.5 intregrated with dovecot-sieve and dovecot-managesieve. Finally I succeeded and it works great, but I found something that might be treated as wrong behaviour... When you run ./configure --with-docs=no, Makefile does not build docs anymore, but... installs them anyway :) It caused some troubles because
2011 Feb 08
1
Ovirt node-imge build error Failed build dependencies......
Hi Ovirt node image build problem? Node image build my system OS Fedora core 14. I am have a question about installation process of oVirt project. Install DOC : https://fedorahosted.org/ovirt/wiki/Build But node-image build error? [root at Ovirt-T node]# make publish { test ! -d "ovirt-node-1.9.3" || { find "ovirt-node-1.9.3" -type d ! -perm -200 -exec chmod u+w
2011 Feb 08
0
Ovirt node-imge build error Bad exit status from /var/tmp/rpm-tmp.9bshdl (%build)
Hi Ovirt node image build problem? Node image build my system OS Fedora core 14. I am have a question about installation process of oVirt project. Install DOC : https://fedorahosted.org/ovirt/wiki/Build But node-image build error? [root at Ovirt-T node]# ./autogen.sh I am going to run ./configure with no arguments - if you wish to pass any to it, please specify them on the
2015 Oct 05
2
Re: [PATCH 1/6] tests: use fake rhsrvany.exe
On Mon, Oct 05, 2015 at 06:12:03PM +0300, Roman Kagan wrote: > On Mon, Oct 05, 2015 at 02:17:52PM +0100, Richard W.M. Jones wrote: > > On Mon, Oct 05, 2015 at 03:40:01PM +0300, Roman Kagan wrote: > > > -guestsdir="$(cd ../tests/guests && pwd)" > > > -f="$guestsdir/windows.img" > > > +abs_top_builddir="$(cd ..; pwd)" >
2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
If you're on the new Makefile system, you will want to update your Makefile.rules. The patch below provides some important fixes for parallel builds and dependencies. It also adds some new features like the -local targets. For example, you can now build "all-local" to build the local directory without recursing into subdirectories. See the comments below for details of the change.
2015 Sep 30
0
[PATCH] Add opensuse.gpg to the dist tarball
Adding missing opensuse.gpg to EXTRA_DIST. --- builder/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/builder/Makefile.am b/builder/Makefile.am index 3111ef2..0d5ce3b 100644 --- a/builder/Makefile.am +++ b/builder/Makefile.am @@ -22,6 +22,7 @@ AM_YFLAGS = -d EXTRA_DIST = \ $(SOURCES_MLI) $(SOURCES_ML) $(SOURCES_C) \ libguestfs.gpg \ + opensuse.gpg \ test-index \
2015 Jan 19
2
[PATCH] Makefile: add support for git svn clones
git has an interface for cloning SVN repositories into git which some users might decide to use. For those users' surprise, the repository will always fail to build on svnonly target and it will exit early. The problem is simple enough to fix by just checking if a .git directory exists in top_builddir and, if so, call git svn info insstead of svn info. Signed-off-by: Felipe Balbi <balbi
2015 Jan 19
0
[PATCH] Makefile: add support for git svn clones
On 19/01/2015 2:33 PM, Felipe Balbi wrote: > git has an interface for cloning SVN repositories into git which > some users might decide to use. For those users' surprise, the > repository will always fail to build on svnonly target and it will > exit early. > > The problem is simple enough to fix by just checking if a .git > directory exists in top_builddir and, if so,
2015 Jan 26
1
[PATCH v2] Makefile: add support for git svn clones
git has an interface for cloning SVN repositories into git which some users might decide to use. For those users' surprise, the repository will always fail to build on svnonly target and it will exit early. The problem is simple enough to fix by just checking if a .git directory exists in top_builddir and, if so, call git svn info insstead of svn info. Note, however, that this only supports
2014 Feb 05
2
Strange regression on FreeBSD buildslave regarding HP-UX scripts
For reasons unrelated to NUT, I upgraded my FreeBSD-x86 buildslave machine from 9.1 to 10.0. This involved rebuilding the whole ports tree, but no other (intentional) changes were made. Now, I get this error: (cd scripts && make top_distdir=../nut-2.7.1.5 distdir=../nut-2.7.1.5/scripts \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: don't
2014 Feb 05
2
Strange regression on FreeBSD buildslave regarding HP-UX scripts
For reasons unrelated to NUT, I upgraded my FreeBSD-x86 buildslave machine from 9.1 to 10.0. This involved rebuilding the whole ports tree, but no other (intentional) changes were made. Now, I get this error: (cd scripts && make top_distdir=../nut-2.7.1.5 distdir=../nut-2.7.1.5/scripts \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: don't
2014 Feb 12
0
Any HP-UX users left? was Re: Strange regression on FreeBSD buildslave regarding HP-UX scripts
Please see below. I think I know what is going on (it seems to be a make/gmake incompatibility), but to fix it, I need to rewrite some of the HP-UX packaging code, and I need a HP-UX user to help test this. Otherwise, I'm going to just rip it out for now, and add it back in when someone complains. On Feb 4, 2014, at 10:17 PM, Charles Lepple wrote: > For reasons unrelated to NUT, I
2010 Mar 12
1
missing dependencies in ovirt-build
Hi, i got this error during build: make[2]: Entering directory `/home/panter/ovirt/node' { test ! -d "ovirt-node-1.0.3" || { find "ovirt-node-1.0.3" -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr "ovirt-node-1.0.3"; }; } test -d "ovirt-node-1.0.3" || mkdir "ovirt-node-1.0.3" (cd gptsync && make