最近,我无意中遇到了“在此范围内未声明”的多次错误,如下所示:
/usr/include/c++/9/ext/string_conversions.h:84:25: error: ‘ERANGE’ was not declared in this scope
84 | else if (errno == ERANGE
| ^~~~~~
In file included from /usr/include/c++/9/system_error:39,
from /usr/include
我正在尝试编译一个包含<iostream>头的简单c++代码。令人惊讶的是,我正面临着我以前从未遇到过的错误。如果删除了<iostream>头,一切都会正常工作。
代码:
#include <iostream>
int main(){
return 0;
}
编译错误:
$ g++ temp.cpp
In file included from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9:0,
from /usr/include/c++/7/cstdint:4
通过使用gcc和gdb作为调试器,我正在学习如何开发没有IDE的C++程序。到目前为止,我已经在终端中使用emacs开发了Python,但是我不想使用C++,因为我被makefile吓倒了,等等。现在我在Linux上使用我的C++程序,我想知道C++如何处理目录。
我的目录结构如下所示
Parent
/ \
Data Folder Program Dir
| |
407 subdirectories <program files>
我正在尝试创建一个C++统一作用域--。使用安装向导我已经创建了我的项目,但是CMake向导不能运行CMake。我得到以下错误:
E: Failed to change to directory ‘/var/lib/schroot/chroots/click-ubuntu-sdk-15.04-armhf/mnt/Data/Programming/RealTime/UbuntuScope/build-RealTime-UbuntuSDK_for_armhf_GCC_ubuntu_sdk_15_04_vivid-Default’: No such file or directory
I: The
我安装了libeigen3-dev,以便使用特征3编译程序。当我包含一个文件(如Eigen/Dense )时,当我试图运行g++时,我得到了这个错误
user@office-debian:~/Documents/prog$ g++ src/main.cpp -MMD -std=c++11
In file included from src/main.cpp:9:0:
src/tdefs.h:16:23: fatal error: Eigen/Dense: No such file or directory
compilation terminated.
运行以下行很好:
g++ -I /us
在从gcc-7.1更新到gcc-7.2之后,我收到了很多关于标准库头文件未声明包含的错误。例如
$ bazel build //test:my_test
ERROR: /home/haining/my_project/BUILD:39:1: undeclared inclusion(s) in rule '//test:my_test':
this rule is missing dependency declarations for the following files included by 'test/test_range.cpp':
'/h
在netbeans中,我创建了一个新文件夹,并在其中添加了头文件。
现在,当我使用以下命令将新创建的文件夹中的头文件包含到另一个文件中时:
#include "folder1/myheaderFile.h"
编译器抱怨它找不到头文件。
错误是:
main.cpp:31:39: fatal error: folder1/myheaderFile.h: No such file or directory
当我想要在我的#include中包含一个文件夹中的头文件时,有什么办法吗?
编辑:我需要为每个文件夹创建一个makefile吗?另一个编辑:
When I right clicke
使用cmake交叉编译应用程序时,我面临一个问题。我使用外部基于Buildroot的SDK为其中一个项目进行交叉编译。它是基于"aarch64“的,我还有其他基于"arm”的SDK,它们编译时没有任何错误。
使用cmake ../. -DCMAKE_TOOLCHAIN_FILE=[...]/ToolchainFile.cmake编译是成功的,它从SDK和CXX编译器获取正确的路径。但是,当我运行make时,我会得到以下错误:
In file included from /opt/sdk_mmia53.e2c-demo.640/aarch64-buildroot-linux-gn
我试图在基于ARM-linux的系统上编译OPENCV。为此,我创建了一个带有以下选项的工具链cmake文件
SET (CMAKE_SYSTEM_NAME Linux)
SET (CMAKE_SYSTEM_VERSION 1)
SET (CMAKE_SYSTEM_PROCESSOR arm)
SET (CMAKE_C_COMPILER "/usr/local/arm/4.3.1-eabi-armv6/usr/bin/arm-linux-gcc")
SET (CMAKE_CXX_COMPILER "/usr/local/arm/4.3.1-eabi-armv6/usr/