当前位置:   article > 正文

C语言第三方库---Melon安装(Linux)_melon c library

melon c library

C语言第三方库—Melon安装(Linux)

Melon库是C语言开发时常用的一个第三方库,内部包含了一些常用的数据结构和算法,因为C语言标准库中没有像C++或者Java里的一些强大的库,最近想深入学习更多C语言,下面也是自己学习记录的过程 :
这里使用的是Ubuntu20.04,首先你的Linux需要先安装好git,make等工具,既然你要安装第三方库,这里默认你已经安装过一些必要的软件了。
使用git命令从GitHub下载melon:

git clone https://github.com/water-Melon/Melon.git

  • 1
  • 2

如果执行以上命令报错:

fatal: unable to access 'https://github.com/water-Melon/Melon.git/': GnuTLS recv error (-54): Error in the pull function.

  • 1
  • 2

将链接中https改为git即可解决。
然后依次执行:

./configure
  • 1

我使用的时候这里报错了,因为configure不在该目录下,执行

find -name configure
  • 1

找到configure所在目录,进入到该目录下执行上述步骤。
然后执行:

make
sudo make install
sudo echo "/usr/local/melon/lib/" >> /etc/ld.so.conf
  • 1
  • 2
  • 3

上面第三个命令我在使用的时候报错了:
在这里插入图片描述
如果你在使用的时候也报了相同的错误,则将命令改为

sudo sh -c "echo '/usr/local/melon/lib/' >> /etc/ld.so.conf"

  • 1
  • 2

即可。
最后一步执行以下命令:

sudo ldconfig
  • 1

代码主要参考代码
下面用vim创建一个例程,迫不及待测试一下melon库的使用:

//这段代码主要是初始化了一个全局变量,然后给每一个子进程创建了一个定时事件,即每一秒中输出一个hello world。
#include <stdio.h>
#include "mln_core.h"
#include "mln_log.h"
#include "mln_event.h"

char text[1024];

static int global_init(void);
static void worker_process(mln_event_t *ev);
static void print_handler(mln_event_t *ev, void *data);

int main(int argc, char *argv[]) {
    struct mln_core_attr cattr;
    cattr.argc = argc;
    cattr.argv = argv;
    cattr.global_init = global_init;
    cattr.worker_process = worker_process;
    return mln_core_init(&cattr);
}

static int global_init(void) {
    //global variable init function
    int n = snprintf(text, sizeof(text)-1, "hello worldn");
    text[n] = 0;
    return 0;
}

static void worker_process(mln_event_t *ev) {
    //we can set event handler here
    //let's set a timer
    mln_event_set_timer(ev, 1000, text, print_handler);
}

static void print_handler(mln_event_t *ev, void *data) {
    mln_log(debug, "%sn", (char *)data);
    mln_event_set_timer(ev, 1000, data, print_handler);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

生成可执行文件:

gcc -o hello hello.c -I /usr/local/melon/include/ -L /usr/local/melon/lib/ -lmelon
  • 1

配置melon:

sudo vim /usr/local/melon/conf/melon.conf
  • 1

修改为以下部分内容:
在这里插入图片描述
修改后启用了多进程框架,执行刚刚的程序会产生三个子进程
可以参考这个大佬的博客:https://blog.csdn.net/weixin_40960130/article/details/113768162
然后保存并退出。
执行刚刚生成的可执行文件:

./hello
  • 1

结果:
在这里插入图片描述
显示有些混乱,但是已经成功了
如果在执行 hello可执行文件时,提示被拒绝,则是因为权限不够的原因
更改命令为:

sudo ./hello
  • 1

大家加油!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/567372
推荐阅读
相关标签
  

闽ICP备14008679号