cling: c++交互式执行

cling编译、使用

2. cling使用

经过 1. cling编译 后 ,即可使用如下(c++像脚本一样被使用):

上手 : On-the-fly-C++/ , cling-cpp-11-interpreter/

hello
/app5/cling-build/bin/cling #进入交互式界面#也可以脚本样式执行
echo '''
#include <iostream>
std::cout << "hello" << std::endl;
''' | /app5/cling-build/bin/cling
#输出hello
cling无子进程 且 默认只有一个线程
#cling无子进程:
pgrep --parent  `pidof cling`#cling默认只有一个线程: 
ls /proc/`pidof cling`/task/ | wc -l  # == 1
查函数签名
#include <pthread.h>pthread //tab tab 后 有相关结构体补全pthread_create //回车后有函数签名
/*
(int (*)(pthread_t *__restrict, const pthread_attr_t *__restrict, void *(*)(void *), void *__restrict) noexcept(true)) Function @0x7d1d8a494c40at /usr/include/pthread.h:202:
extern int pthread_create (pthread_t *__restrict __newthread,const pthread_attr_t *__restrict __attr,void *(*__start_routine) (void *),void *__restrict __arg) __THROWNL __nonnull ((1, 3))
*/
c++ std 文本文件按行读取
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
std::string ln;
std::vector<std::string> lnVec;
std::ifstream ifile("f1.txt");
if(!ifile.is_open()) exit(1);
ifile.fail(); //false
while(true){std::getline(ifile,ln);if(ifile.fail()){ break; }lnVec.push_back(ln);
}
ifile.fail(); //true
lnVec;// (std::vector<std::string> &) { "aaaa", "bbb", "ccc" }
ifile.close();
ifile.is_open(); //false
.help

/app5/cling-build/bin/cling 进入交互式界面

****************** CLING ******************
* Type C++ code and press enter to run it *
*             Type .q to exit             *
*******************************************
[cling]$ .helpCling (C/C++ interpreter) meta commands usageAll commands must be preceded by a '.', exceptfor the evaluation statement { }==============================================================================Syntax: .Command [arg0 arg1 ... argN].L <filename>		- Load the given file or library.(x|X) <filename>[(args)]	- Same as .L and runs a function withsignature: ret_type filename(args).> <filename>		- Redirect command to a given file'>' or '1>'		- Redirects the stdout stream only'2>'			- Redirects the stderr stream only'&>' (or '2>&1')		- Redirects both stdout and stderr'>>'			- Appends to the given file.undo [n]			- Unloads the last 'n' inputs lines.U <filename>		- Unloads the given file.(I|include) [path]		- Shows all include paths. If a path is given,adds the path to the include paths..O <level>			- Sets the optimization level (0-3)If no level is given, prints the current setting..class <name>		- Prints out class <name> in a CINT-like style (one-level).If no name is given, prints out list of all classes..Class <name>		- Prints out class <name> in a CINT-like style (all-levels).If no name is given, prints out list of all classes..namespace			- Prints list of all known namespaces.typedef <name>		- Prints out typedef <name> in a CINT-like styleIf no name is given, prints out list of all typedefs..files			- Prints names of all included (parsed) files.fileEx			- Prints out included (parsed) file statisticsas well as a list of their names.g <var>			- Prints out information about global variable'var' - if no name is given, print them all.@ 				- Cancels and ignores the multiline input.rawInput [0|1]		- Toggle wrapping and printing theexecution results of the input.dynamicExtensions [0|1]	- Toggles the use of the dynamic scopesand the late binding.debug <level>		- Generates debug symbols (level is optional, 0 to disable).printDebug [0|1]		- Toggles the printing of input's correspondingstate changes.storeState <filename>	- Store the interpreter's state to a given file.compareState <filename>	- Compare the interpreter's state with the onesaved in a given file.stats [name]		- Show stats for internal data structures'ast'  abstract syntax tree stats'asttree [filter]'  abstract syntax tree layout'decl' dump ast declarations'undo' show undo stack.T <filePath> <comment>	- Generate autoload map.trace <repr> <id>		- Dump trace of requested respresentation(see .stats arguments for <repr>).help			- Shows this information (also .?).q				- Exit the program

1. cling编译

vgvassilev/cling.git/readme.md/编译步骤

binD=/app5/cling-build
mkdir $binDD=/app5/llvm-home
mkdir $D #欧洲高能物理数据分析 ROOT
git clone https://github.com/root-project/llvm-project.git $D
#/app5/llvm-home/llvm-project/.git/config
llvmD=$D/llvm-project # == /app5/llvm-home/llvm-projectgit clone https://github.com/root-project/cling.git $D
#/app5/llvm-home/cling/.git/config
clingD=$D/cling # == /app5/llvm-home/cling#配置
cmake -DLLVM_EXTERNAL_PROJECTS=cling -DLLVM_EXTERNAL_CLING_SOURCE_DIR=$clingD -DLLVM_ENABLE_PROJECTS="clang" -DLLVM_TARGETS_TO_BUILD="host;NVPTX" -DCMAKE_BUILD_TYPE=Release $llvmD/llvm
#命令展开: cmake -DLLVM_EXTERNAL_PROJECTS=cling -DLLVM_EXTERNAL_CLING_SOURCE_DIR=/app5/llvm-home/cling -DLLVM_ENABLE_PROJECTS="clang" -DLLVM_TARGETS_TO_BUILD="host;" -DCMAKE_BUILD_TYPE=Release /app5/llvm-home/llvm-project/llvm#编译clang
cmake --build $binD  --target clang -j10#编译cling
cmake --build  $binD --target cling -j10

issues/531#issuecomment-2337234891

所用版本

#/app5/llvm-home/llvm-project/.git/config
#llvmD=$D/llvm-project # == /app5/llvm-home/llvm-project
git --git-dir=$llvmD/.git rev-parse HEAD # == 66d752c5c714ac57b468e1b4d62a52f9207b5d44
git --git-dir=$llvmD/.git   branch  # == ROOT-llvm18
git --git-dir=$llvmD/.git --no-pager  log  --format=oneline | head -n 1
#66d752c5c714ac57b468e1b4d62a52f9207b5d44 Do not install {Clang,Cling}Config.cmake in the project lib dir.#/app5/llvm-home/cling/.git/config
#clingD=$D/cling # == /app5/llvm-home/cling
git --git-dir=$clingD/.git rev-parse HEAD # == 1d4925536b9f89015ad2afdc24e260207dd69ebb
git --git-dir=$clingD/.git   branch  # == master
git --git-dir=$clingD/.git --no-pager  log  --format=oneline | head -n 1
#1d4925536b9f89015ad2afdc24e260207dd69ebb Move static init function renaming to `BackendPasses.cpp`

1B. cling编译备忘

若不编译clang会报错 resource directory /app5/llvm-home/cling-build/lib/clang/18 not found!

cd /app5/llvm-home/cling-build/
./bin/cling 
ERROR in cling::CIFactory::createCI():resource directory /app5/llvm-home/cling-build/lib/clang/18 not found!****************** CLING ******************
* Type C++ code and press enter to run it *
*             Type .q to exit             *
*******************************************
[cling]$ .q

cling-官方编译好的

vgvassilev/cling.git

夜间编译 / 2020-Dec-17-cling-Ubuntu-16.04-x86_64-0.8.dev-c054ac2.tar.bz2

上手 : On-the-fly-C++/ , cling-cpp-11-interpreter/

 cat /etc/issue # == Ubuntu 22.04.5 LTS \n \laria2c --all-proxy=http://westgw:7890   https://github.com/vgvassilev/cling/releases/download/cling-nightlies/2020-Dec-17-cling-Ubuntu-16.04-x86_64-0.8.dev-c054ac2.tar.bz2
tar -jxf 2020-Dec-17-cling-Ubuntu-16.04-x86_64-0.8.dev-c054ac2.tar.bz2cling_D=/app5/cling-Ubuntu-16.04-x86_64-0.8~dev-c054ac2export PATH_BASE=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
export PATH=$PATH_BASE:$jdk8_d/bin:$cling_D/binwhich cling # == /app5/cling-Ubuntu-16.04-x86_64-0.8~dev-c054ac2/bin/cling

cling运行报错, 估计 原因是 这cling 是基于ubuntu16编译的, 而我这是ubuntu22

ERROR in cling::CIFactory::createCI(): cannot extract standard library include paths!
Invoking:LC_ALL=C g++-5  -O3 -DNDEBUG -xc++ -E -v /dev/null 2>&1 | sed -n -e '/^.include/,${' -e '/^ \/.*++/p' -e '}'
Results was:
With exit code 0
input_line_1:1:10: fatal error: 'new' file not found
#include <new>^~~~~
Warning in cling::IncrementalParser::CheckABICompatibility():Failed to extract C++ standard library version.****************** CLING ******************
* Type C++ code and press enter to run it *
*             Type .q to exit             *
*******************************************
[cling]$ .q

欧洲高能物理数据分析 ROOT内置的cling

改为用 高能物理数据分析 ROOT / root_v6.34.02.Linux-ubuntu22.04-x86_64-gcc11.4.tar.gz 其内置了cling

结论: rootcling bare-cling 没有交互式界面, 直接退出了

aria2c https://root.cern/download/root_v6.34.02.Linux-ubuntu22.04-x86_64-gcc11.4.tar.gztar -xf root_v6.34.02.Linux-ubuntu22.04-x86_64-gcc11.4.tar.gz#清理PATH
export PATH_BASE=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
export PATH=$PATH_BASErootD=/app5/root_v6.34.02.Linux-ubuntu22.04-x86_64-gcc11.4#激活 高能物理ROOT 环境
source $rootD/bin/thisroot.sh
#命令展开: source /app5/root_v6.34.02.Linux-ubuntu22.04-x86_64-gcc11.4/bin/thisroot.shecho $PATH #== $rootD/bin:$PATH_BASE
echo $LD_LIBRARY_PATH # == $rootD/lib
echo  $ROOTSYS # == $rootD
which rootcling # == $rootD/bin/rootcling
rootcling  --help-list | grep bare
#bare-cling - Call directly cling and exit.rootcling  bare-cling #没有交互式界面, 直接退出了

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/67905.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

学习ASP.NET Core的身份认证(基于JwtBearer的身份认证7)

本文验证基于请求头中传递token信息的认证方式&#xff0c;webapi项目的控制器类中新建如下函数&#xff0c;仅通过验证的客户端能调用&#xff0c;需要客户端请求在Header中添加’Authorization’: Bearer token’的键值对且通过token验证后才能调用。 [Authorize] [HttpGet]…

电子应用设计方案101:智能家庭AI喝水杯系统设计

智能家庭 AI 喝水杯系统设计 一、引言 智能家庭 AI 喝水杯系统旨在为用户提供个性化的饮水提醒和健康管理服务&#xff0c;帮助用户养成良好的饮水习惯。 二、系统概述 1. 系统目标 - 精确监测饮水量和饮水频率。 - 根据用户的身体状况和活动量&#xff0c;智能制定饮水计划。…

单例模式 - 单例模式的实现与应用

引言 单例模式&#xff08;Singleton Pattern&#xff09;是设计模式中最简单且最常用的模式之一。它确保一个类只有一个实例&#xff0c;并提供一个全局访问点来访问该实例。单例模式常用于需要全局唯一对象的场景&#xff0c;如配置管理、日志记录、线程池等。 本文将详细介…

Navicat 导出表结构后运行查询失败ERROR 1064 (42000): You have an error in your SQL syntax;

本文主要介绍了在使用 Navicat 导出 MySQL 表后新建查询时出现报错的问题及解决方案。 一、问题描述 Navicat导出MySql中的表&#xff0c;在新建数据库新建查询时通常会报错You have an error in your SQL syntax; check the manual that corresponds to your MySQL server …

【学习笔记】计算机网络(一)

第1章 概述 文章目录 第1章 概述1.1 计算机网络在信息时代中的作用1.2 互联网概述1.2.1 网络的网络1.2.2互联网基础结构发展的三个阶段1.2.3 互联网的标准化工作 1.3 互联网的组成1.3.1 互联网的边缘部分1.3.2 互联网的核心部分 1.4 计算机网络在我国的发展1.5 计算机网络的类别…

当使用 npm 时,出现 `certificate has expired` 错误通常意味着请求的证书已过期。

当使用 npm 时&#xff0c;出现 certificate has expired 错误通常意味着请求的证书已过期。这可能是由于以下几种情况&#xff1a; 网络代理问题&#xff1a;如果使用了网络代理&#xff0c;代理服务器的证书可能过期或配置有误。系统时间错误&#xff1a;系统时间不准确可能导…

【Elasticsearch】 Ingest Pipeline `processors`属性详解

在Elasticsearch中&#xff0c;Ingest Pipeline 的 processors 属性是一个数组&#xff0c;包含一个或多个处理器&#xff08;processors&#xff09;。每个处理器定义了一个数据处理步骤&#xff0c;可以在数据索引之前对数据进行预处理或富化。以下是对 processors 属性中常见…

Web3与传统互联网的对比:去中心化的未来路径

随着互联网技术的不断发展&#xff0c;Web3作为去中心化的新兴架构&#xff0c;正在逐步改变我们的网络体验。从传统的Web2到Web3&#xff0c;互联网的演进不仅是技术的革新&#xff0c;更是理念的变革。那么&#xff0c;Web3与传统互联网相比&#xff0c;到底有何不同&#xf…

【094】基于51单片机全自动洗衣机【Proteus仿真+Keil程序+报告+原理图】

☆、设计硬件组成&#xff1a;51单片机最小系统LCD1602液晶显示FC103三档水位传感器AT24C02存储芯片进水泵排水泵L9110电机驱动芯片直流电机蜂鸣器LED灯按键设置。 1、设计采用STC89C51/52、AT89C51/52、AT89S51/52作为主控芯片&#xff1b; 2、采用LCD1602液晶显示屏实时显示…

每日一题--比较版本号

文章目录 题目描述比较规则9种情况分析解释示例 解题思路实现步骤代码实现复杂版本简化版本 代码讲解复杂度分析 题目描述 在许多软件开发和版本管理系统中&#xff0c;版本号用于表示不同的更新或发布。通常版本号由多个修订号组成&#xff0c;这些修订号通过 . 连接。现在给…

Effective C++读书笔记——item23(用非成员,非友元函数取代成员函数)

一、主要观点&#xff1a; 在某些情况下&#xff0c;使用 non-member、non-friend 函数来替换 member 函数可以增强封装性和可扩展性&#xff0c;提供更好的软件设计。 二、详细解释&#xff1a; 封装性&#xff1a; 类成员函数的封装性考量&#xff1a;成员函数可以访问类的…

GBase8c aes_encrypt和aes_decrypt函数

在数据库中&#xff0c;aes_encrypt和aes_decrypt函数进行加解密时使用的块加密模式。 GBase8c 与 MySQL 的aes_encrypt和aes_decrypt函数区别&#xff1a; 1、GBase8c 中的初始化向量init_vector不能为空 2、MySQL的加密模块block_encryption_mode 为aes-128-ecb&#xff0c;…

重新理解tech lead角色

角色&#xff1a; tech leadleaderdeveloperarchitectleader:balance priorities,communicate clear goals,make apt decisions(做出适当的决定);supervise team members&#xff08;管理团队成员&#xff09;,delegate tasks, issue feedback, evaluate risks, and resolve co…

三相电变为家庭220V,市电火线和零线关系,为什么用三相电输送

参考&#xff1a; https://www.zhihu.com/question/30555841/answer/85723024 上面是电力系统的主要组成&#xff0c;发电站发电后升压传输&#xff0c;然后到各大城市再降压使用。 我们看到电塔上都是三根线&#xff0c;那么因为整个过程都是三相电。 为什么用三相电&#xff…

Java 和 JavaScript 的区别

尽管名字相似&#xff0c;JavaScript 的名字中带有 “Java”&#xff0c;确实让很多人误以为它与 Java 有紧密联系。但实际上&#xff0c;它们是完全不同的语言&#xff0c;只是在 JavaScript 的发展历史中与 Java 有一定的关联。 1. JavaScript 的诞生背景 时间点&#xff1…

linux数据压缩

在Linux系统中&#xff0c;有多种工具可用于文件的压缩和解压缩。虽然compress是一个早期Unix系统中的文件压缩工具&#xff0c;但在现代Linux系统中&#xff0c;更推荐使用如gzip、bzip2、xz等效率更高的工具。以下是基于您提供的信息整理的关于Linux文件压缩工具及其使用方法…

outlook附件限制最大5m如何解决

Outlook 附件大小限制为 5MB&#xff0c;通常由邮件服务器&#xff08;如 Exchange、Office 365、Gmail 等&#xff09;或本地 Outlook 配置决定。可以采取以下几种方法来解决该限制问题&#xff1a; 解决方案 1&#xff1a;调整服务器端限制&#xff08;管理员权限&#xff09…

Python----Python高级(正则表达式:语法规则,re库)

一、正则表达式 1.1、概念 正则表达式&#xff0c;又称规则表达式,&#xff08;Regular Expression&#xff0c;在代码中常简写为regex、 regexp或RE&#xff09;&#xff0c;是一种文本模式&#xff0c;包括普通字符&#xff08;例如&#xff0c;a 到 z 之间的字母&#xff0…

linux网络 | 传输层TCP | 认识tcp报头字段与分离

前言&#xff1a; 本节内容继续传输层的讲解&#xff0c; 本节讲解的是tcp协议。 tcp协议是我们日常中最常用的协议。就比如我们浏览网页&#xff0c;我们知道网页时http或者https协议。 其实http或者https底层就是用的tcp协议。tcp协议&#xff0c;全名又称为传输控制协议&…

Mysql触发器(学习自用)

一、介绍 二、触发器语法 注意&#xff1a;拿取新的数据时用new&#xff0c;旧数据用old。