在Linux下使用LLVM Clang以及Blocks
在Linux下使用LLVM Clang以及Blocks
可以从这个链接下载:http://llvm.org/releases/download.html
sudo apt-get install llvm
sudo apt-get install clang
sudo apt-get install libblocksruntime-dev
代码:
#include <stdio.h>
#include <Block.h>
int main() {
void (^hello)(void) = ^(void) {
printf("Hello, block!\n");
};
hello();
return 0;
}
编译与连接:
clang test.c -fblocks -lBlocksRuntime -o test
相关推荐
wanyi0 2020-11-03
82467413 2019-12-31
82921934 2019-11-04
pang 2019-06-27
qiusi0 2018-02-25
雪一梦 2018-04-13
拉斯厄尔高福 2020-08-03
KilluaZoldyck 2020-05-09
NewActivity 2020-05-05
qscool 2020-01-10
solarLan 2019-06-28
慕名ArcGIS 2019-06-27
DengZY 2019-06-26
zuojinmin 2019-06-26
DengZY 2019-06-25
qingsongzdq 2019-06-21
qingsongzdq 2019-06-21