Re: ndk25
Paul Smith <[email protected]> Wed, 26 Nov 2025 14:46:00 -0500
| Newsgroups | gmane.comp.gnu.make.bugs |
|---|---|
| Organization | GNU's Not UNIX! |
| Message-ID | <[email protected]> |
On Wed, 2025-11-26 at 21:59 +0300, Никита wrote: > c:\android-ndk-r28c\build\….\\prebuilt\windows-x86_64\bin\make.exe: > invalid option -- / > make: the "-j" option requires a positive integer argument Apparently you are not passing a positive integer argument to your invocation of GNU Make. Based on the error it appears you invoked make something like this: make -j/... where "..." is some unknown string. Maybe, you forget to add a space after the -j, like this? make -j /... ??? Since you didn't provide us with the command line that was used to start GNU Make, we can't help more than that.