溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

kotlin native 調(diào)用 C 動態(tài)庫

發(fā)布時間:2020-08-02 19:28:32 來源:網(wǎng)絡 閱讀:612 作者:757781091 欄目:編程語言

準備環(huán)境

  1. 安裝fedora31
  2. 編譯kotlin native
  3. 創(chuàng)建 hello.h 頭文件,在其中輸入如下代碼
#ifndef HELLO_H 
#define HELLO_H 

void sayHello();

#endif
  1. 創(chuàng)建hello.c文件,在其中輸入如下代碼
#include "hello.h"
#include <stdio.h>

void sayHello()
{
    printf("Hello Kotlin Native\n");
}
  1. 編譯hello.c,生成動態(tài)鏈接庫
mkdir lib

gcc -shared -fPIC -o lib/libmyhello.so hello.c
  1. 創(chuàng)建hello.def文件

    
    headers=hello.h
    headerFilter=hello.h
    package=hello

linkerOpts = -L/tmp/kotlin/lib -lmyhello #如果不加這一行,使用kotlinc編譯main.kt則需要加上 -linker-options '-L./lib -lmyhello'

```
  1. 執(zhí)行如下命令用以分析hello.h文件,并自動生成kotlin定義
cinterop -def hello.def -compiler-option -I. -o hello
  1. 命令執(zhí)行后的結(jié)果
    kotlin native 調(diào)用 C 動態(tài)庫
  2. 創(chuàng)建main.kt文件
import hello.*

fun main(args: Array<String>)
{
sayHello()
}
  1. 編譯main.kt
    kotlinc main.kt -library hello  -o main
  2. 執(zhí)行文件
    kotlin native 調(diào)用 C 動態(tài)庫

  3. 參考鏈接
    https://github.com/plter/SimpleKotlinNativeCallCDemo
    https://github.com/JetBrains/kotlin-native/blob/master/INTEROP.md
向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI