摘要: cmake_minimum_required(VERSION 3.12)project(untitled16)set(CMAKE_CXX_STANDARD 14) add_definitions(-DAA=1) add_executable(untitled16 main.cpp) cmake_mi 阅读全文
posted @ 2021-02-24 16:01 zJanly 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 摘要:在linux上用vim写C++的时候,通常用gdb进行调试,不能随心所欲的看代码和跳转代码以及加watch(也有可能是因为我还没有get正确的使用方法)。为此我发现Clion可以做到自动同步本场代码或自己下载远程代码同步到本地,以及调试在远程机器上运行的代码,为此记录下来。 简介 CLion 阅读全文
posted @ 2021-02-24 14:46 zJanly 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <stdlib.h>static int * g_count = NULL;__attribute__((constructor)) void load_file(){ printf("Constructor is called.\n");}__ 阅读全文
posted @ 2021-02-24 14:26 zJanly 阅读(1181) 评论(0) 推荐(0) 编辑