歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

在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

Copyright © Linux教程網 All Rights Reserved