gcc/g++ 常用编译指令

一、简单编译

#include <stdio.h>

int main(int argc, char* argv[])
{
        printf("test\n");
        return 0;
}

g++ main.cpp -o main

二、链接相关库

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h> 
#include <string>
#include <iostream>
#include <openssl/md5.h>

std::string md5Sum(const std::string& raw)
{
	unsigned char md[16];
	char out[33];
	MD5((const unsigned char*)raw.c_str(), raw.length(), md);
	for (int i = 0; i < 16; i++) {
		sprintf(out + (i*2), "%02x", md[i]);
	}
	out[32] = 0;
	return std::string(out);
}

int main(int argc, char* argv[])
{
    std::string token = md5Sum(raw_token);
    printf("test:%s\n", token.c_str());
    return 0;
}

此段代码用到了openssl库,所以编译的时候需要将openssl相关静态库,以及相关头文件链接进去,才能编译成功。

g++ main.cpp -I/usr/local/openssl/include  -lssl -lcrypto -ldl -L/usr/local/openssl/lib  -L/usr/lib -o main  

解释:

-I(大写i) : 依赖来的头文件地址

-l(小写l): 依赖的库名

-L: 依赖库文件地址

最后,想要了解更多,请关注公众号

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值