---
title: 不支持__builtin_exit
description: "```"
url: https://www.hikunpeng.com/document/detail/zh/kunpengdevkithistory/bisheng/hist-bisheng/topic_0000002478176261.html
sourcePath: /source/zh/kunpengdevkithistory/bisheng/hist-bisheng/topic_0000002478176261.html
indexId: 77102ef500ac3cd9fa37eb20d686f76f2fc47bd98f4188dd4ddc54504b904e3e80
---
# 不支持__builtin_exit

#### 错误信息

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


#### 问题介绍

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


#### 解决方案

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