Examples of ElfLinker


Examples of org.jnode.linker.ElfLinker

     */
    protected void copyKernel(NativeStream os) throws BuildException {
        try {
            Elf elf = Elf.newFromFile(getKernelFile().getCanonicalPath());
            // elf.print();
            new ElfLinker((X86BinaryAssembler) os).loadElfObject(elf);
        } catch (IOException ex) {
            throw new BuildException(ex);
        }

        // Link the jump table entries
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.