Makefile clang-3.8:在WSL(Linux的Windows子系统)中找不到命令

Makefile clang-3.8:在WSL(Linux的Windows子系统)中找不到命令,makefile,windows-subsystem-for-linux,ubuntu-20.04,Makefile,Windows Subsystem For Linux,Ubuntu 20.04,我使用的是WSL(Linux的Windows子系统),版本是Ubuntu 20.04 LTS BUILD_TOOL = \ build_tool.o CC = clang-3.8 LIBS = ../out/x64/libmbedcrypto.a all: build_tool build_tool: $(BUILD_TOOL) $(CC) $(BUILD_TOOL) $(LIBS) -o build_tool sudo apt update sudo a

我使用的是WSL(Linux的Windows子系统),版本是Ubuntu 20.04 LTS

BUILD_TOOL = \
    build_tool.o 

CC = clang-3.8

LIBS =  ../out/x64/libmbedcrypto.a

all: build_tool


build_tool: $(BUILD_TOOL)
        $(CC) $(BUILD_TOOL) $(LIBS) -o build_tool
sudo apt update
sudo apt install clang
显示错误:
clang-3.8:未找到命令

我已尝试通过apt get安装,但没有安装候选

$ sudo apt-get install clang-3.8`
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package clang-3.8 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'clang-3.8' has no installation candidate

在Ubuntu20.04 LTS中可用

BUILD_TOOL = \
    build_tool.o 

CC = clang-3.8

LIBS =  ../out/x64/libmbedcrypto.a

all: build_tool


build_tool: $(BUILD_TOOL)
        $(CC) $(BUILD_TOOL) $(LIBS) -o build_tool
sudo apt update
sudo apt install clang
并将Makefile重写为:

CC = clang