Displaying 20 results from an estimated 181 matches for "built_sourc".
Did you mean:
built_sources
2018 Dec 07
1
Re: [PATCH nbdkit 1/5] src: Mark synopsis.c as BUILT_SOURCES.
...rc/Makefile.am
> index 3490c0f..65f9498 100644
> --- a/src/Makefile.am
> +++ b/src/Makefile.am
> @@ -80,6 +80,7 @@ nbdkit_LDFLAGS = \
> # synopsis.c is generated from docs/synopsis.txt where it is also
> # used to generate the man page. It is included in main.c.
>
> +BUILT_SOURCES = synopsis.c
> EXTRA_DIST = synopsis.c
> nbdkit_DEPENDENCIES = synopsis.c
> CLEANFILES += synopsis.c
Did this make an actual difference during parallel 'make', given that
you already have nbdkit_DEPENDENCIES to trigger normal make
prerequisites? Automake's implementa...
2018 Dec 06
0
[PATCH nbdkit 1/5] src: Mark synopsis.c as BUILT_SOURCES.
...ertion(+)
diff --git a/src/Makefile.am b/src/Makefile.am
index 3490c0f..65f9498 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -80,6 +80,7 @@ nbdkit_LDFLAGS = \
# synopsis.c is generated from docs/synopsis.txt where it is also
# used to generate the man page. It is included in main.c.
+BUILT_SOURCES = synopsis.c
EXTRA_DIST = synopsis.c
nbdkit_DEPENDENCIES = synopsis.c
CLEANFILES += synopsis.c
--
2.19.0.rc0
2009 Nov 18
1
[PATCH] Fix dependencies on generator.ml
...kefile.am
@@ -15,8 +15,16 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-EXTRA_DIST = \
- tests.c
+GENERATOR_ML = tests.c
+
+.PHONY: force
+
+$(GENERATOR_ML): force
+ $(MAKE) -C $(top_builddir)/src stamp-generator
+
+BUILT_SOURCES = $(GENERATOR_ML)
+
+EXTRA_DIST = $(BUILT_SOURCES)
# Tests. These are auto-generated from the test descriptions
# in the generator.
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index d049da6..a2e6a29 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -19,6 +19,25 @@ ACLOCAL_...
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid,
I think it is the first time it is run that the errors occcur !?
Not sure but that would seem logical.
Aaron
2009 Nov 19
3
Fix parallel make (v3)
This new series condenses all of the previously posted patches into new patch
1/2.
The second patch is a new fix for parallel build in the haskell directory.
2009 Nov 19
5
Fix various build dependency problems
Patch 1/5 is a repost. Only change is title update.
These fix parallel make on my machine, and additionally make building from
subdirectories more correct.
2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
....
> -#
> -# 4. Source - If specified, this sets the source code filenames. If this
> -# is not set, it defaults to be all of the .cpp, .c, .y, and .l files
> -# in the current directory. Also, if you want to build files in addition
> -# to the local files, you can use the BUILT_SOURCES variable
> -#
> -# 6. LLVM_SRC_ROOT - If specified, points to the top of the LLVM source tree.
> -#
> -# 8. BUILD_SRC_DIR - The directory which contains the current set of Makefiles
> -# and usually the source code too (unless SourceDir is set).
> -#
> -# 9. BUILD_SRC_ROOT...
2020 Mar 16
1
[nbdkit PATCH] eval: Rebuild hard link if git breaks it
...+ b/plugins/eval/Makefile.am
@@ -1,5 +1,5 @@
# nbdkit
-# Copyright (C) 2017-2019 Red Hat Inc.
+# Copyright (C) 2017-2020 Red Hat Inc.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
@@ -43,7 +43,7 @@ BUILT_SOURCES = \
call.c \
methods.c \
$(NULL)
-$(BUILT_SOURCES):
+$(BUILT_SOURCES): ../sh/call.c ../sh/methods.c
ln -f ../sh/$@
CLEANFILES += $(BUILT_SOURCES)
--
2.25.1
2007 Jun 04
0
Patch to enable python bindings in absence of docs build
...ot;
+#endif
/* Include overrides for the documentation comments. */
%include "extracomments.i"
Index: python/Makefile.am
===================================================================
--- python/Makefile.am (revision 8794)
+++ python/Makefile.am (working copy)
@@ -9,7 +9,12 @@
BUILT_SOURCES = modern/xapian_wrap.cc modern/xapian_wrap.h modern/xapian.py
-EXTRA_DIST = util.i extra.i extracomments.i except.i doccomments.i\
+if HAVE_DOCCOMMENTS_SOURCES
+DOCCOMMENTS_I = doccomments.i
+DOCCOMMENTS_I_FLAGS=-DDOCCOMMENTS_I_SOURCES
+endif
+
+EXTRA_DIST = util.i extra.i extracomments.i excep...
2017 Sep 26
1
[PATCH] builder: Fix problem about index-parse.h not being generated
If configured with --without-ocaml, the build might fail because the
fix added in df5bd5741b37da9cf97d7a76ac2805557aa630db was not active.
According to the automake documentation, it should be enough to set
BUILT_SOURCES.
---
builder/Makefile.am | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/builder/Makefile.am b/builder/Makefile.am
index e3d37667b..3c7113eee 100644
--- a/builder/Makefile.am
+++ b/builder/Makefile.am
@@ -373,15 +373,7 @@ CLEANFILES += \
index-parse.h \
index-sc...
2017 Jan 25
0
[PATCH v2 1/7] lib: Share common protocol and errnostring libraries with the library and daemon.
...GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+include $(top_srcdir)/subdir-rules.mk
+
+generator_built = \
+ errnostring-gperf.gperf \
+ errnostring.c \
+ errnostring.h
+
+BUILT_SOURCES = \
+ $(generator_built) \
+ errnostring-gperf.c
+
+EXTRA_DIST = \
+ $(BUILT_SOURCES)
+
+noinst_LTLIBRARIES = liberrnostring.la
+
+# Build the errnostring perfect hash code. The generated code has lots
+# of warnings so we must compile it in a separate mini-library.
+liberrnostring_la_SOURCES =...
2008 Dec 01
3
[LLVMdev] Multiple directories in a single library
...les
===================================================================
--- Makefile.rules (revision 59957)
+++ Makefile.rules (working copy)
@@ -541,6 +541,10 @@
Sources := $(SOURCES)
endif
+ifdef EXTRA_SOURCES
+ Sources += $(patsubst $(PROJ_SRC_DIR)/%, %, $(EXTRA_SOURCES))
+endif
+
ifdef BUILT_SOURCES
Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
endif
@@ -1123,16 +1127,19 @@
else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
$(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
+ $(Verb) $(MKDIR) $(dir $@) > /dev/null
$(Echo) "...
2017 Sep 26
2
building virt-builder still seems to fail.
Hi,
it seems that even after
commit df5bd5741b37da9cf97d7a76ac2805557aa630db
Author: Richard W.M. Jones <rjones@redhat.com>
Date: Tue Apr 29 15:43:20 2014 +0100
builder: Fix parallel builds of index-parse.o.
there is a small chance that a build may go wrong with the described
symtom, missing "do_parse" symbol.
It just happened to me on Debian's ppc64el buildd[1] and
2020 Mar 16
0
[nbdkit PATCH v2] eval: Rebuild hard link if git breaks it
...l-plugin.la
# This plugin shares most of the same sources as nbdkit-sh-plugin. In
# RHEL 7 we cannot add the C files from ../sh directly to SOURCES
-# because subdir-objects is broken. Instead we create hard links to
+# because subdir-objects is broken. Instead we create symlinks to
# them.
BUILT_SOURCES = \
call.c \
methods.c \
$(NULL)
-$(BUILT_SOURCES):
- ln -f ../sh/$@
+call.c: ../sh/call.c
+ ln -f -s ../sh/$@
+methods.c: ../sh/methods.c
+ ln -f -s ../sh/$@
CLEANFILES += $(BUILT_SOURCES)
nbdkit_eval_plugin_la_SOURCES = \
--
2.25.1
2009 Nov 18
1
[PATCH] Add missing dependencies for targets of generator.ml
...ator: generator.ml
mkdir -p $(top_srcdir)/java/com/redhat/et/libguestfs
cd $(top_srcdir) && ocaml -warn-error A src/generator.ml
-guestfs_protocol.x: stamp-generator
-
include_HEADERS = guestfs.h guestfs-actions.h guestfs-structs.h
lib_LTLIBRARIES = libguestfs.la
@@ -49,6 +47,8 @@ BUILT_SOURCES = \
guestfs-actions.c \
guestfs-bindtests.c
+$(BUILT_SOURCES): stamp-generator
+
# This convenience library is solely to avoid compiler warnings
# in its generated sources.
libprotocol_la_SOURCES = \
--
1.6.5.2
2019 Dec 13
8
[v2v PATCH 0/7] Various build fixes
Just like the similar series that already went in for libguestfs [1],
do similar fixes also for virt-v2v, with additional fixes for the
builddir!=srcdir case.
This will also need the fix to subdir-rules.mk.
[1] https://www.redhat.com/archives/libguestfs/2019-December/msg00062.html
Pino Toscano (7):
Update common to latest
build: stop shipping files generated by configure
build: use the
2014 Apr 24
3
[LLVMdev] tablegen for fast isel
What is the purpose of tablegen created files for fast-isel?
If I make the following change to Makefile in lib/Target/Mips
BUILT_SOURCES = MipsGenRegisterInfo.inc MipsGenInstrInfo.inc \
MipsGenAsmWriter.inc MipsGenCodeEmitter.inc \
MipsGenDAGISel.inc MipsGenCallingConv.inc \
- MipsGenSubtargetInfo.inc MipsGenMCCodeEmitter.inc \
+ MipsGenSubtargetInfo.inc MipsGenFastI...
2018 Dec 06
10
[PATCH nbdkit 0/5] protocol: Generate map functions from NBD protocol flags to printable strings.
With some crufty sed scripts we can generate functions that map from
NBD protocol flags (eg. NBD_CMD_READ) to strings ("NBD_CMD_READ").
This works on GNU sed and with FreeBSD, also with GNU sed's --posix
option, so I guess the sed code is POSIX-compatible.
Rich.
2009 Aug 17
1
two more warning-avoidance patches
...can have its own CFLAGS, and link that with the destination one.
---
src/Makefile.am | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index c6006d2..9eb71b9 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -48,6 +48,14 @@ BUILT_SOURCES = \
guestfs-actions.c \
guestfs-bindtests.c
+# This convenience library is solely to avoid compiler warnings
+# in its generated sources.
+libprotocol_la_SOURCES = \
+ guestfs_protocol.c \
+ guestfs_protocol.h
+
+libprotocol_la_CFLAGS = -Wall -Wno-unused
+
$(BUILT_SOURCES): stamp-genera...
2004 Oct 22
6
[LLVMdev] Makefile.rules Changes / automake update (IMPORTANT!)
...s. If you have another project, you MIGHT be
impacted because of a few variable name changes.
All changes will (soon) be documented in a new "LLVM Makefiles" document that
I'll write, but quickly, here's what changed from a USER's perspective:
* ExtraSource variable became BUILT_SOURCES (standard variable name)
* SourceDir variable eliminated (redundant with BUILD_SRC_DIR, few uses)
* Properly allow standard variables to be used (C,CFLAGS,CXX,CXXFLAGS,CPP,
CPPFLAGS, LD, LDFLAGS, AR, ARFLAGS, etc) to alter compilation settings on a
per directory basis.
* Build BUILT_SOURCES...