码迷,mamicode.com
首页 > 系统相关 > 详细

在Linux下使用LLVM Clang以及Blocks

时间:2015-08-26 15:31:26      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

可以从这个链接下载: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

在Linux下使用LLVM Clang以及Blocks

标签:

原文地址:http://www.cnblogs.com/zenny-chen/p/4760384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!