赞
踩
按照官网教程一步一步来
首先是tasks.json
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "type": "shell", "label": "clang++ build active file", "command": "/usr/bin/clang++", "args": [ "-std=c++17", "-stdlib=libc++", "${workspaceFolder}/*.cpp", "-o", "${workspaceFolder}/helloworld.out", "-g" ], "options": { "cwd": "/usr/bin" },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。