You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
Apparently Makefile doesn't have a handling for '*.S' files.
Full error:
$ make -k
# other logs
make[1]: *** No rule to make target `kernel_hooks.S', needed by `path/to/SwapDRC/swapdrc.elf'.make[1]: *** No rule to make target `syscalls_asm.S', needed by `path/to/SwapDRC/swapdrc.elf'.
make[1]: Target `path/to/SwapDRC/swapdrc.elf' not remade because of errors.make: *** [build] Error 2
(the -k argument makes make ignore any errors and keep building)
Looking into Makefile, and even though I don't fully understand how it works, I see what I think is a rule for '*.S' files:
Apparently Makefile doesn't have a handling for '*.S' files.
Full error:
(the
-k
argument makesmake
ignore any errors and keep building)Looking into Makefile, and even though I don't fully understand how it works, I see what I think is a rule for '*.S' files:
My only modifications to Makefile were adding
"
s to allow for running make from a cwd with spaces on it's path.The text was updated successfully, but these errors were encountered: