search for: objectify

Displaying 20 results from an estimated 24 matches for "objectify".

2006 Jul 09
6
[PATCH/RFC] klibc/kbuild: use separate kbuild files for each klibc subdirectory
...include $(obj)/arch/$(KLIBCARCHDIR)/Make ##### # Shared definitions -LIB := libc.a +LIBC := libc.a SOLIB := libc.so SOHASH := klibc.so CRT0 := arch/$(KLIBCARCHDIR)/crt0.o INTERP_O := interp.o -always := $(CRT0) $(LIB) $(SOLIB) $(SOHASH) $(INTERP_O) -LIB := $(call objectify,$(LIB)) +always := $(LIBC) $(SOLIB) $(SOHASH) $(INTERP_O) +LIBC := $(call objectify,$(LIBC)) SOLIB := $(call objectify,$(SOLIB)) SOHASH := $(call objectify,$(SOHASH)) CRT0 := $(call objectify,$(CRT0)) @@ -87,17 +83,10 @@ INTERP_O := $(call objectify,$(INTERP_O) SOLIBHASH = $(sh...
2005 Jul 28
0
[PATCH] Use KLIBSRC + KLIBINC consistent in kbuild files
...ketcalls/Kbuild @@ -11,8 +11,6 @@ endif # Composite object containing all .o file always := socketcalls.o -klibc-dir := $(srctree)/usr/klibc - ##### # Generate socket calls stubs # Based on input from SOCKETCALLS.def generate socket call stubs @@ -26,15 +24,15 @@ $(obj)/socketcalls.o: $(call objectify,$ $(call if_changed,userld) quiet_cmd_socketcalls = GEN $@ - cmd_socketcalls = $(PERL) $(klibc-dir)/socketcalls.pl \ - $(klibc-dir)/SOCKETCALLS.def \ + cmd_socketcalls = $(PERL) $(KLIBSRC)/socketcalls.pl \ + $(KLIBSRC)/SOCKETCALLS.def...
2019 Jan 20
0
[klibc:master] Build and install shared binaries only if KLIBCSHAREDFLAGS is defined
...ild +++ b/usr/klibc/Kbuild @@ -91,7 +91,10 @@ SOHASH := klibc.so CRT0 := arch/$(KLIBCARCHDIR)/crt0.o INTERP_O := interp.o -always := $(LIBC) $(SOLIB) $(SOHASH) $(INTERP_O) +always := $(LIBC) +ifdef KLIBCSHAREDFLAGS +always += $(SOLIB) $(SOHASH) $(INTERP_O) +endif LIBC := $(call objectify,$(LIBC)) SOLIB := $(call objectify,$(SOLIB)) SOHASH := $(call objectify,$(SOHASH)) @@ -181,10 +184,15 @@ $(INTERP_O): $(obj)/interp.S $(SOLIB).hash # Install klibc install-rule: @echo " INSTALL klibc to $(INSTALLROOT)$(INSTALLDIR)/$(KLIBCCROSS)lib" - $(Q)$(foreach f, $(LIBC) $...
2005 Jul 30
3
kbuild updates to klibc
Hi Peter & others. Here are three patches that does the following: #1 - Update kbuild part of klibc so make clean works Adds gzip including a sample kbuild file #2 - Factor out definition of usr/ to two variables #3 - Move kbuild files to reflect location in the kernel As requested in earlier mail I need a bit of guidiance of what you expect from the kernel integrated parts of klibc.
2009 Mar 31
15
Error: undefined method ''calc_min'' for #<Wx::IdleEvent>
Hi, I occasionally had the following error when application in idle state. Error: undefined method ''calc_min'' for #<Wx::IdleEvent:0xb115e44> OS: WXMSW Ruby Version: 1.8.6 wxRuby 2.0.0 Backtrace: (eval):154:in `calc_min'' (eval):154:in `layout'' (eval):154:in `process_event'' (eval):154:in `on_run'' (eval):154:in
2005 Jul 26
2
[PATCH] better kbuild integration
...st of more than one .o file multi-deps = $($(subst $(obj)/,,$@-y)) link-multi-deps = $(addprefix $(obj)/, \ $(patsubst %/, %/built-in.o, $(multi-deps))) diff --git a/klibc/Kbuild b/klibc/Kbuild --- a/klibc/Kbuild +++ b/klibc/Kbuild @@ -119,6 +119,7 @@ $(SOLIB): $(CRT0) $(call objectify,__sha # Build sha1 hash values targets += klibc.so libc.so.hash hostprogs-y := sha1hash +clean-files += klibc-???????????????????????????.so quiet_cmd_solibhash = HASH $@ cmd_solibhash = $(USERNM) $< | egrep '^[0-9a-fA-F]+ [ADRTW] ' | \ @@ -129,7 +130,7 @@ $(SOLIB).ha...
2010 Mar 02
17
[PATCH 00/16] External building, update for 2.6.33 and multiple root devices.
The following patchset implements 3 seperate series of changes. External Building ================= Patches 1 through 8 enable to use of klibc's build system while leaving the src tree pristine (and potentially read only). Specifically: - srctree=<Sources for klibc> - objtree=<Ouput directory for klibc> - KLIBCKERNELSRC=<Kernel sources> - KLIBCKERNELOBJ=<Kernel
2003 Oct 04
0
klibc: kbuild improvements
...USERAR USERSTRIP USERNM \ USERCFLAGS USERAFLAGS USERLIBGCC USERSHAREDFLAGS USERSTRIPFLAGS \ USERCRT0 USERLIBC ===== scripts/Makefile.user 1.3 vs edited ===== --- 1.3/scripts/Makefile.user Tue Jun 10 05:56:56 2003 +++ edited/scripts/Makefile.user Sat Oct 4 22:47:02 2003 @@ -13,7 +13,7 @@ objectify = $(foreach o,$(1),$(if $(filter /%,$(o)),$(o),$(obj)/$(o))) -build-multi := $(foreach o,$(build-targets),$(if $(deps_$(o)),$(o))) +build-multi := $(foreach o,$(targets),$(if $(deps_$(o)),$(o))) build-y := $(foreach o,$(build-multi),$(deps_$(o))) include scripts/Makefile.lib @@ -22,7 +22,7...
2020 Aug 29
0
[klibc:riscv64-enable-relax] riscv64: Make linker relaxation work and enable it
...--- a/usr/klibc/arch/riscv64/Kbuild +++ b/usr/klibc/arch/riscv64/Kbuild @@ -2,7 +2,11 @@ # # klibc files for riscv64 -always := crt0.o -targets := crt0.o +always := crt0.o _main.o +targets := crt0.o _main.o klib-y := setjmp.o syscall.o + +install-rule: + $(Q)$(shell $(install-data) $(call objectify,_main.o) \ + $(INSTALLROOT)$(INSTALLDIR)/$(KLIBCCROSS)lib) diff --git a/usr/klibc/arch/riscv64/MCONFIG b/usr/klibc/arch/riscv64/MCONFIG index 9bc7bd24..fdd6c92c 100644 --- a/usr/klibc/arch/riscv64/MCONFIG +++ b/usr/klibc/arch/riscv64/MCONFIG @@ -7,9 +7,6 @@ # accordingly. # -# We shou...
2006 Feb 14
0
rubyforge-0.1.1
...login! logging in will store a cookie in your .rubyforge directory which expires after a time. always run the login command before any operation that requires authentication, such as uploading a package. TODO - scrape rubyforge to auto-configure group_id and package_ids. - objectify the script. it''s procedural butchery attm. - add error checking. this requires screen scraping to see of an operation succeeded since 200 is returned from rubyforge even for failed operations and only the html text reveals the status. - add more functionality. OPTIONS...
2020 Aug 29
0
[klibc:riscv64-enable-relax] riscv64: Make linker relaxation work and enable it
...--- a/usr/klibc/arch/riscv64/Kbuild +++ b/usr/klibc/arch/riscv64/Kbuild @@ -2,7 +2,11 @@ # # klibc files for riscv64 -always := crt0.o -targets := crt0.o +always := crt0.o _main.o +targets := crt0.o _main.o klib-y := setjmp.o syscall.o + +install-rule: + $(Q)$(shell $(install-data) $(call objectify,_main.o) \ + $(INSTALLROOT)$(INSTALLDIR)/$(KLIBCCROSS)lib) diff --git a/usr/klibc/arch/riscv64/MCONFIG b/usr/klibc/arch/riscv64/MCONFIG index 9bc7bd24..34061086 100644 --- a/usr/klibc/arch/riscv64/MCONFIG +++ b/usr/klibc/arch/riscv64/MCONFIG @@ -7,9 +7,6 @@ # accordingly. # -# We shou...
2010 Oct 20
2
[PATCH] klibc: reproducible builds
...a/usr/klibc/Kbuild +++ b/usr/klibc/Kbuild @@ -109,7 +109,7 @@ klib-o-files = $(shell cat $(obj)/klib.list \ targets += libc.a __static_init.o quiet_cmd_libc = KLIBCAR $@ cmd_libc = rm -f $@; \ - $(KLIBCAR) cq $@ \ + $(KLIBCAR_cq) $@ \ $(call objectify,__static_init.o) $(klib-o-files); \ $(KLIBCRANLIB) $@ -- 1.7.1
2012 May 17
5
[PATCH 1/1] kbuild: sync with kernel 3.4-rc7
...t) equals `quiet_', otherwise full one. +echo-cmd = $(if $($(quiet)cmd_$(1)),\ + echo ' $(call escsq,$($(quiet)cmd_$(1)))$(echo-why)';) + +# printing commands cmd = @$(echo-cmd) $(cmd_$(1)) -# Add $(obj)/ for paths that is not absolute +# Add $(obj)/ for paths that are not absolute objectify = $(foreach o,$(1),$(if $(filter /%,$(o)),$(o),$(obj)/$(o))) ### @@ -112,42 +197,82 @@ objectify = $(foreach o,$(1),$(if $(filter /%,$(o)),$(o),$(obj)/$(o))) # See Documentation/kbuild/makefiles.txt for more info ifneq ($(KBUILD_NOCMDDEP),1) -# Check if both arguments has same arguments. Res...
2008 Dec 31
5
The future of Compiz
...t. There is also a fourth point that's causing us problems. - Compiz is a research project. Essentially, there's been very little work to bring Compiz into a state where it can be considered truly stable. We need to stop using Compiz master as an experiment. Examples of this is XCB and objectifying Core and Plugins prior to the object framework being ready. That's if we ignore the branches. I've been very passive since the merge, as I was quite outspoken in my objections, however, it's time we actually talk about Compiz, Compiz Fusion and project management. I am ready to do t...
2006 May 11
0
[patch] klibc: merge s390 and s390x
...le.inc ##### # Shared definitions LIB := libc.a SOLIB := libc.so SOHASH := klibc.so -CRT0 := arch/$(KLIBCARCH)/crt0.o +CRT0 := arch/$(KLIBCARCHDIR)/crt0.o INTERP_O := interp.o always := $(CRT0) $(LIB) $(SOLIB) $(SOHASH) $(INTERP_O) @@ -87,7 +87,7 @@ INTERP_O := $(call objectify,$(INTERP_O) SOLIBHASH = $(shell cat $(SOLIB).hash) -targets += arch/$(KLIBCARCH)/crt0.o +targets += arch/$(KLIBCARCHDIR)/crt0.o targets += $(libc-y) $(KLIBCARCHOBJS) # Generate syscall stubs diff -purN a/usr/klibc/arch/s390/MCONFIG b/usr/klibc/arch/s390/MCONFIG --- a/usr/klibc/arch/s390...
2006 Apr 11
6
klibc kbuild status
Hi hpa & others. Following is a list of issues that I hope to be addressed soon so we are in even better shape for -mm inclusion. 1) rebuild initramfs when content changes. > It is a simple matter of copying in usr/Makefile from the latest > -linus kernel and replace the 10 first lines with the content from > klibc Kbuild file. 2) havesyscalls.h is not deleted after make
2006 May 24
1
[patch] klibc: merge s390/s390x 2nd try
...le.inc ##### # Shared definitions LIB := libc.a SOLIB := libc.so SOHASH := klibc.so -CRT0 := arch/$(KLIBCARCH)/crt0.o +CRT0 := arch/$(KLIBCARCHDIR)/crt0.o INTERP_O := interp.o always := $(CRT0) $(LIB) $(SOLIB) $(SOHASH) $(INTERP_O) @@ -87,7 +87,7 @@ INTERP_O := $(call objectify,$(INTERP_O) SOLIBHASH = $(shell cat $(SOLIB).hash) -targets += arch/$(KLIBCARCH)/crt0.o +targets += arch/$(KLIBCARCHDIR)/crt0.o targets += $(libc-y) $(KLIBCARCHOBJS) # Generate syscall stubs diff -purN a/usr/klibc/arch/s390/MCONFIG b/usr/klibc/arch/s390/MCONFIG --- a/usr/klibc/arch/s390...
2005 Jul 29
1
move kbuild files to reflect dir structure in kernel
...this empty to make it the root. -# -SHLIBDIR = /lib - -export USERLD USERCC USERAR USERSTRIP USERNM -export USERCFLAGS USERAFLAGS USERLIBGCC USERSHAREDFLAGS USERSTRIPFLAGS -export USERCRT0 USERLIBC SHLIBDIR - -# kernel configuration -include .config - -# Add $(obj)/ for paths that is not absolute -objectify = $(foreach o,$(1),$(if $(filter /%,$(o)),$(o),$(obj)/$(o))) - -# Kbuild file in the directory that is being build -include $(obj)/Kbuild - -##### -# user-progs := handling - -# user-progs based on a single .c file (with same name) -user-single := $(foreach p, $(user-progs), $(if $($(p)-y),,$(p)))...
2004 Nov 01
5
make apply() return a list
Hi, I have a dataframe (say myData) and want to get a list (say myList) that contains a matrix for each row of the dataframe myData. These matrices are calculated based on the corresponding row of myData. Using a for()-loop to do this is very slow. Thus, I tried to use apply(). However, afaik apply() does only return a list if the matrices have different dimensions, while my matrices have
2006 Jun 26
0
[klibc 19/43] klibc basic build infrastructure
...to make it the root. +# +SHLIBDIR = /lib + +export KLIBCLD KLIBCCC KLIBCAR KLIBCSTRIP KLIBCNM +export KLIBCCFLAGS KLIBCAFLAGS KLIBCLIBGCC KLIBCSHAREDFLAGS KLIBCSTRIPFLAGS +export KLIBCCRT0 KLIBCLIBC SHLIBDIR + +# kernel configuration +include .config + +# Add $(obj)/ for paths that is not absolute +objectify = $(foreach o,$(1),$(if $(filter /%,$(o)),$(o),$(obj)/$(o))) + +# Kbuild file in the directory that is being build +include $(obj)/Kbuild + +##### +# static-y + shared-y handling +klibc-progs := $(static-y) $(shared-y) +# klibc-progs based on a single .o file (with same name + .o) +klibc-objs := $(...