I am making a kernel in Visual C++ according to to the tutorial here. However, when I try to build it I receive the error LINK : fatal error LNK1146: no argument specified with option '/OUT:'. I would provide source code, but it is unnecessary because I haven’t changed it from the tutorial. However, for quick reference, here are my C/C++ options:
/Gd /Fm /TC /c kernel.c
And here is my Link options:
/safeseh:no /filealign:0x1000 /BASE:0x100000 /ENTRY:__multiboot_entry__ /NODEFAULTLIB:LIBC /SUBSYSTEM:CONSOLE /OUT: kernel.exe
No space after the colon: