简体   繁体   中英

Makefile entrypoint not found - vscode

I have installed vscode, but this message always opens (bottom right in the picture). I have attached a screenshot for you. Anyone know how I can fix this? I would be very happy if someone could help me. Thanks in advance

在此处输入图像描述

这里有原因, https://github.com/microsoft/vscode-makefile-tools/issues/318在扩展插件中uninstall Makefile Tools 即可

thank you for your help. It worked. Thanks again.

I had the same problem. I have code structure like this:

myProject
  |
  |_ component1
     |_ src: cpp files
     |_ Makefile
  |_ component2
     |_ src: cpp files
     |_ Makefile

I resolved this problem by creating Makefile under ./myProject with this content:

MAKE := make
all:
    $(MAKE) -C ./component1
    $(MAKE) -C ./component2

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM