---
title: 不支持__builtin_exit
description: "```"
url: https://www.hikunpeng.com/document/detail/zh/kunpengdevps/compilation/ug-bisheng/kunpengbisheng_06_0098.html
sourcePath: /source/zh/kunpengdevps/compilation/ug-bisheng/kunpengbisheng_06_0098.html
indexId: 5d5027f35532c566d9d740b0b0c57db13293f5363d649a066d643a3acae9f0b474
---
# 不支持__builtin_exit

#### 错误信息

```
error: use of undeclared identifier '__builtin_exit'
3 |   __builtin_exit (0);
|   ^
```


#### 问题介绍

毕昇编译器不支持内置函数__builtin_exit。


#### 解决方案

- 使用标准库中的exit；
- 使用clang-tidy工具可以识别该类问题并提供修改建议。
