vscode-amiga-vbcc-example icon indicating copy to clipboard operation
vscode-amiga-vbcc-example copied to clipboard

Clean task removes also startup.o

Open jukeks opened this issue 5 years ago • 1 comments

After executing Clean workspace task the environment is broken because all .o files under target were removed.

jukeks avatar Jan 06 '20 22:01 jukeks

The clean workspace command, removes all the .o files from the build directory by design. Using a makefile as in this project you should declare a custom clean command in the makefile and avoid the built-in clean workspace command. This makefile command should be called in a custom vscode task.

prb28 avatar Jan 07 '20 00:01 prb28