help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Help-make Digest, Vol 241, Issue 2


From: Amit Chaudhuri
Subject: Re: Help-make Digest, Vol 241, Issue 2
Date: Sat, 4 Feb 2023 19:00:36 +0000

Is there not a stray space in the original post?

mykernel<space>.bin

Might that explain?

On Sat, 4 Feb 2023 at 17:02, <help-make-request@gnu.org> wrote:
>
> Send Help-make mailing list submissions to
>         help-make@gnu.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.gnu.org/mailman/listinfo/help-make
> or, via email, send a message with subject or body 'help' to
>         help-make-request@gnu.org
>
> You can reach the person managing the list at
>         help-make-owner@gnu.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Help-make digest..."
>
>
> Today's Topics:
>
>    1. Re: Make reported an error "There are no rules to create
>       'mykernel. bin',  stop" (Paul Smith)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Fri, 03 Feb 2023 12:20:08 -0500
> From: Paul Smith <psmith@gnu.org>
> To: "icport20000@outlook.com" <icport20000@outlook.com>,
>         "help-make@gnu.org" <help-make@gnu.org>
> Subject: Re: Make reported an error "There are no rules to create
>         'mykernel. bin',  stop"
> Message-ID: <ce88157f6af7b06bcc59e241f5f12c28a51b4c1f.camel@gnu.org>
> Content-Type: text/plain; charset="UTF-8"
>
> On Fri, 2023-02-03 at 04:18 +0000, icport20000@outlook.com wrote:
> > system:ubuntu22.10
> > I'm trying to make mykernel.bin,However, an error was reported. See
> > the title for details
> > This is my makefile code:
> > GPPPARAMS = -m32 -fno-use-cxa-atexit -fleading-underscore -fno-
> > exceptions -fno-builtin -nostdlib -fno-rtti
> >
> > ASPARAMS = --32
> >
> > LDPARAMS = -melf_i386
> >
> > objects = loader.o kernel.o
> >
> > %.o: %.cpp
> >
> >         g++ ${GPPPARAMS} -o $@ -c $<
> >
> > %.o: %.s
> >
> >         as ${ASPARAMS} -o $@ $<
> >
> > mykernel.bin: linker.ld ${objects}
> >
> >         ld ${LDPARAMS} -T $< -o $@ ${objects}
> >
> > install: mykernel.bin
> >         sudo cp $< /boot/mykernel.bin
>
> Please show (via cut and paste of the _exact_ text) the make command
> you typed and the error you got.  Also, please show the contents of the
> directory where you entered the "make" command (run "ls -l" or
> similar).
>
> Based on the information you've provided here the error you report
> cannot happen.  So there must be something else going on, that you've
> not shown us.
>
>
>
> ------------------------------
>
> Subject: Digest Footer
>
> _______________________________________________
> Help-make mailing list
> Help-make@gnu.org
> https://lists.gnu.org/mailman/listinfo/help-make
>
>
> ------------------------------
>
> End of Help-make Digest, Vol 241, Issue 2
> *****************************************



reply via email to

[Prev in Thread] Current Thread [Next in Thread]