在某次编译场景情况下,遇到如下情况
make: xxx: Is a directory. Stop
原因是文件夹路径存在空格,如下所示
/test/home/grpc example/
去掉空格修改为如下即可
/test/home/grpc_example/
在某次编译场景情况下,遇到如下情况
make: xxx: Is a directory. Stop
原因是文件夹路径存在空格,如下所示
/test/home/grpc example/
去掉空格修改为如下即可
/test/home/grpc_example/