Displaying 11 results from an estimated 11 matches for "mk_elfconfig".
2013 Jun 01
2
[LLVMdev] Compile Linux Kernel module into LLVM bitcode
...===
objdump: scripts/mod/.tmp_empty.o: File format not recognized
if [ "-pg" = "-pg" ]; then if [ scripts/mod/empty.o != "scripts/mod/empty.o" ]; then /home/kevin/split_io_Linux/scripts/recordmcount "scripts/mod/empty.o"; fi; fi;
gcc -Wp,-MD,scripts/mod/.mk_elfconfig.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/mod/mk_elfconfig scripts/mod/mk_elfconfig.c
scripts/mod/mk_elfconfig < scripts/mod/empty.o > scripts/mod/elfconfig.h
Error: not ELF
make[2]: *** [scripts/mod/elfconfig.h] Error 1
make[1]: *** [scripts...
2013 Jun 01
0
[LLVMdev] Compile Linux Kernel module into LLVM bitcode
...scripts/mod/.tmp_empty.o: File format not recognized
> if [ "-pg" = "-pg" ]; then if [ scripts/mod/empty.o != "scripts/mod/empty.o" ]; then /home/kevin/split_io_Linux/scripts/recordmcount "scripts/mod/empty.o"; fi; fi;
> gcc -Wp,-MD,scripts/mod/.mk_elfconfig.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/mod/mk_elfconfig scripts/mod/mk_elfconfig.c
> scripts/mod/mk_elfconfig < scripts/mod/empty.o > scripts/mod/elfconfig.h
> Error: not ELF
Yup, it's not ELF, it's bitcode! This is going to...
2013 Jun 08
1
[LLVMdev] Compile Linux Kernel module into LLVM bitcode
...od/.tmp_empty.o: File format not recognized
> > if [ "-pg" = "-pg" ]; then if [ scripts/mod/empty.o != "scripts/mod/empty.o" ]; then /home/kevin/split_io_Linux/scripts/recordmcount "scripts/mod/empty.o"; fi; fi;
> > gcc -Wp,-MD,scripts/mod/.mk_elfconfig.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -o scripts/mod/mk_elfconfig scripts/mod/mk_elfconfig.c
> > scripts/mod/mk_elfconfig < scripts/mod/empty.o > scripts/mod/elfconfig.h
> > Error: not ELF
>
> Yup, it's not ELF, it's bitcod...
2008 Sep 27
4
[LLVMdev] compile linux kernel
...uot;KBUILD_STR(s)=#s"
-D"KBUILD_BASENAME=KBUILD_STR(missing_syscalls)"
-D"KBUILD_MODNAME=KBUILD_STR(missing_syscalls)"
make -f scripts/Makefile.build obj=scripts
make -f scripts/Makefile.build obj=scripts/genksyms
make -f scripts/Makefile.build obj=scripts/mod
scripts/mod/mk_elfconfig x86_64 < scripts/mod/empty.o >
scripts/mod/elfconfig.h
Error: not ELF
make[2]: *** [scripts/mod/elfconfig.h] Error 1
make[1]: *** [scripts/mod] Error 2
make: *** [scripts] Error 2
$cat scripts/Makefile.build
hostprogs-y := modpost mk_elfconfig
always := $(hostprogs-y) empty.o
modpost-objs...
2008 Sep 27
0
[LLVMdev] compile linux kernel
...aspect in the
> Kernel: http://llvm.org/pubs/2005-03-14-ACP4IS-AspectsKernel.pdf
>
> He used L4 based Hypervisor and Virtual Machines. Can this not be done
> or am I missing something?
>
I think you'll need to modify the kernel build scripts to not expect ELF
output, such as mk_elfconfig.
LLVM outputs its own bytecode format when you use -emit-llvm, and not an
ELF format.
Best regards,
--Edwin
2008 Sep 27
2
[LLVMdev] compile linux kernel
I plan to use virtualization infrastructure to JIT VM Kernel Code.
Michael Engel has done that in the past to have dynamic aspect in the
Kernel: http://llvm.org/pubs/2005-03-14-ACP4IS-AspectsKernel.pdf
He used L4 based Hypervisor and Virtual Machines. Can this not be done
or am I missing something?
-Ashish
On Sat, Sep 27, 2008 at 3:13 AM, Török Edwin <edwintorok at gmail.com> wrote:
>
2005 May 22
1
error starting asterisk: undefined symbol: __i686.get_pc_thunk.dx
...rt,
it''s kind of lame.
I didn''t watch the console the whole time it was compiling, so I didn''t
see anything interesting there.
I grep''ed my xenU tree for get_pc_thunk and got only these results:
Binary file scripts/mod/modpost matches
Binary file scripts/mod/mk_elfconfig matches
Binary file scripts/lxdialog/lxdialog matches
Binary file scripts/kconfig/conf matches
Binary file scripts/kconfig/mconf matches
Binary file scripts/basic/docproc matches
Binary file scripts/basic/fixdep matches
Binary file scripts/basic/split-include matches
Binary file scripts/kallsyms ma...
2008 Jun 26
5
DO NOT REPLY [Bug 5567] New: REGRESSION: 3.0.3pre3 dies with "failed to open XXX, continuing: Too many open files"
https://bugzilla.samba.org/show_bug.cgi?id=5567
Summary: REGRESSION: 3.0.3pre3 dies with "failed to open XXX,
continuing: Too many open files"
Product: rsync
Version: 3.0.3
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
2018 Dec 16
1
[PATCH v2] x86, kbuild: revert macrofying inline assembly code
...))
# cc-option
# Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
diff --git a/scripts/mod/Makefile b/scripts/mod/Makefile
index a5b4af4..42c5d50 100644
--- a/scripts/mod/Makefile
+++ b/scripts/mod/Makefile
@@ -4,8 +4,6 @@ OBJECT_FILES_NON_STANDARD := y
hostprogs-y := modpost mk_elfconfig
always := $(hostprogs-y) empty.o
-CFLAGS_REMOVE_empty.o := $(ASM_MACRO_FLAGS)
-
modpost-objs := modpost.o file2alias.o sumversion.o
devicetable-offsets-file := devicetable-offsets.h
--
2.7.4
2018 Dec 13
2
[PATCH] kbuild, x86: revert macros in extended asm workarounds
...))
# cc-option
# Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
diff --git a/scripts/mod/Makefile b/scripts/mod/Makefile
index a5b4af4..42c5d50 100644
--- a/scripts/mod/Makefile
+++ b/scripts/mod/Makefile
@@ -4,8 +4,6 @@ OBJECT_FILES_NON_STANDARD := y
hostprogs-y := modpost mk_elfconfig
always := $(hostprogs-y) empty.o
-CFLAGS_REMOVE_empty.o := $(ASM_MACRO_FLAGS)
-
modpost-objs := modpost.o file2alias.o sumversion.o
devicetable-offsets-file := devicetable-offsets.h
--
2.7.4
2018 Dec 13
2
[PATCH] kbuild, x86: revert macros in extended asm workarounds
...))
# cc-option
# Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
diff --git a/scripts/mod/Makefile b/scripts/mod/Makefile
index a5b4af4..42c5d50 100644
--- a/scripts/mod/Makefile
+++ b/scripts/mod/Makefile
@@ -4,8 +4,6 @@ OBJECT_FILES_NON_STANDARD := y
hostprogs-y := modpost mk_elfconfig
always := $(hostprogs-y) empty.o
-CFLAGS_REMOVE_empty.o := $(ASM_MACRO_FLAGS)
-
modpost-objs := modpost.o file2alias.o sumversion.o
devicetable-offsets-file := devicetable-offsets.h
--
2.7.4