- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法运行使用 MinGW-w64 和 Eclipse 作为 IDE 构建的程序。一旦我运行它,控制台中没有任何输出,Windows 应用程序就会显示消息“myprog.exe 已停止工作”。代码很好,但是当我从构建特定文件中排除时它可以工作。
个人猜测与代码无关(因为我在另一个项目中测试过),是代码文件的组合导致了这个问题。在 Eclipse 的调试角度告诉我
No source available for "libstdc++-6!_ZSt9use_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale() at 0x6fcb9c0a"
有人建议在链接器选项中添加这些标志:
-static-libstdc++ -static-libgcc
它没有用,但错误消息不同:
No source available for "std::local_Rb_tree_decrement() at 0x47379a"
主要是一个简单的 Hello World 打印。
命令:
21:01:55 **** Rebuild of configuration Debug for project autoMath ****
Info: Internal Builder is used for build
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\Operator.o ..\core\Operator.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o autoMath.o ..\autoMath.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\operand\Integer.o ..\core\operand\Integer.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\operand\Variable.o ..\core\operand\Variable.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\operand\Constant.o ..\core\operand\Constant.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\operand\Vector.o ..\core\operand\Vector.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\operand\OperandCore.o ..\core\operand\OperandCore.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\Op.o ..\core\Op.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\operator\Unary.o ..\core\operator\Unary.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\operator\OperatorCore.o ..\core\operator\OperatorCore.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\operator\Binary.o ..\core\operator\Binary.cpp
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -o core\Operand.o ..\core\Operand.cpp
g++ -static-libstdc++ -static-libgcc -o autoMath core\operator\Unary.o core\operator\OperatorCore.o core\operator\Binary.o core\operand\Vector.o core\operand\Variable.o core\operand\OperandCore.o core\operand\Integer.o core\operand\Constant.o core\Operator.o core\Operand.o core\Op.o autoMath.o
编辑:导致执行失败的文件的源代码
//Binary.hpp
#include "OperatorCore.hpp"
#include "../../utility/StaticPool.hpp"
class Binary final : public OperatorCore, public StaticPool<Binary> {
friend class StaticPool<Binary>;
public:
enum IDs {SUM = 0, SUB, MUL, DIV, POW};
protected:
Binary(IDs ID, std::string name, int precedence, bool revOrder = false);
public:
const bool isAssociative;
const bool revOrder;
~Binary();
std::string print(bool latex = false) const;
operator int() const;
};
//Binary.cpp
#include "Binary.hpp"
template<>
const Binary StaticPool<Binary>::pool[] = {
{Binary::SUM, "+", 1}//deleting this line fix the problem
};
Binary::Binary(IDs ID, std::string name, int precedence, bool revOrder) :
OperatorCore(name, precedence, name), StaticPool<Binary>(ID), isAssociative(true), revOrder(revOrder) {}
Binary::~Binary() {}
std::string Binary::print(bool latex) const {return name;}
Binary::operator int() const {return ID;}
“一元”类完全相同,但不会使程序失败
最佳答案
您可以忽略“无可用资源”消息。您收到此消息是因为您正在使用调试器查看正在执行标准库中的函数的堆栈帧,而标准库的源代码不可用。源代码不可用没关系,因为该错误可能无论如何都不在标准库中。
在您的工具链中遇到真正的错误是非常罕见。
我创建了一个在我的系统上崩溃的小程序。
#include <vector>
#include <algorithm>
int main() {
std::vector<int> v { 9, 8, 7, 6, 5, 4, 3 };
std::sort(std::begin(v), std::begin(v) + 16);
return 0;
}
当我在 gdb 中运行它时,我得到以下堆栈跟踪:
#0 0x00007ffff7246107 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56#1 0x00007ffff72474e8 in __GI_abort () at abort.c:89#2 0x00007ffff7284044 in __libc_message (do_abort=do_abort@entry=1, fmt=fmt@entry=0x7ffff7376c60 "*** Error in `%s': %s: 0x%s ***") at ../sysdeps/posix/libc_fatal.c:175#3 0x00007ffff728981e in malloc_printerr (action=1, str=0x7ffff7376e20 "free(): invalid next size (fast)", ptr=<optimized out>) at malloc.c:4996#4 0x00007ffff728a526 in _int_free (av=<optimized out>, p=<optimized out>, have_lock=0) at malloc.c:3840#5 0x0000000000401456 in __gnu_cxx::new_allocator<int>::deallocate(int*, unsigned long) ()#6 0x00000000004010ca in std::allocator_traits<std::allocator<int> >::deallocate(std::allocator<int>&, int*, unsigned long) ()#7 0x0000000000400dba in std::_Vector_base<int, std::allocator<int> >::_M_deallocate(int*, unsigned long) ()#8 0x0000000000400b95 in std::_Vector_base<int, std::allocator<int> >::~_Vector_base() ()#9 0x0000000000400a6b in std::vector<int, std::allocator<int> >::~vector() ()#10 0x0000000000400878 in main ()
您可以看到第 10 帧在我的代码中,但第 0-9 帧在标准库中。这是比较正常的。您还会注意到,崩溃是在错误代码执行完毕后发生的:对 std::sort()
的调用是导致崩溃的原因,但崩溃并没有直到 main()
返回。
调试崩溃可能非常棘手。
您正在使用 MinGW,它是 GCC,这意味着您可能可以访问地址清理器。尝试将 -fsanitize=address
添加到调试版本的编译和链接标志中。
当我用 -fsanitize=address
编译我的测试程序时,程序在 std::sort()
中崩溃,这更接近实际错误所在在 main()
中。地址清理器将使您的程序更快崩溃,从而更容易调试。
类似的工具是 Valgrind。
我只能猜测,因为我看不到您的任何源代码。但看起来 Binary
的构造函数中存在错误,或者以错误的方式构造了类型为 Binary
的全局变量。请记住,全局变量可以按任何顺序初始化,因此如果使用任何尚未初始化的全局变量,您的代码可能会崩溃。这是 C++ 程序中极其常见的错误来源。
关于c++ - "libstdc++-6..."没有可用的源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26961424/
语境 我正在将一个旧的 php 电子商务网站变成一个用 gatsby.js 构建的静态网站。 我将所有产品元数据放入单独的 .json 文件(每个产品一个),并且我能够使用 json 和文件转换器插件
我曾经能够使用三指向上滚动在源/标题之间切换。自从升级到 Lion 后,我只进行常规滚动。有没有办法恢复该功能? Aka,当我像以前那样向上/向下滚动时,它不会跳到对应的位置。 更新 Apple 在
我有一个包含复选框输入的克隆元素。当克隆的元素未被选中时,我需要也取消选中源元素。有没有办法在 jQuery 中做到这一点?或者我是否以错误的方式处理这个问题(即使用clone())?我应该提到我的问
我有一个类,其中有两个 JSpinner 对象,x 和 y。我有一个更改监听器,它已添加到两者中。有人可以告诉我如何实现我的更改监听器,以便监听器可以区分两个对象之间的区别。例如伪代码: if(sou
我正在编写涉及 for 循环的代码,该循环在每个索引处进行计算。 这些计算中的最小值存储在一个变量中,我在程序末尾使用 MPI_Allreduce 来确定所有进程的全局最小值。 但是,我需要一种方法来
我需要在一个 Android 项目中创建一个 map View ,我从服务器获取自定义 map 图 block PNG。有人知道实现此类功能的简单许可 API 吗? 最佳答案 我使用了 OsmDroi
因为我必须创建一个可以更改图像 (src/background-url) 的函数。我想知道如何识别标签以及它是使用 src 还是 url 来访问图像。 让我们说 早些时候我写了一个可以
当我使用源 map 浏览器 https://github.com/danvk/source-map-explorer要检查捆绑包中的内容,我得到以下输出: D:\projects\angular\mT
我正在为客户将 Windev 应用程序移植到 Objective-C。出于显而易见的原因,使用以前的源代码会更简单。 不幸的是,它是加密的,我需要 EDI 才能看到它;完整版的 Windev 太贵了(
我有一个简单的视频播放器,它使用 WPF MediaElement 播放一系列视频。这些视频一起形成一个围绕静止图像移动的连续电影。在每个视频结束时,运动会卡住在当前播放视频的最后一帧。当我按下一个按
我需要更改 openlayer 的图层源(使用 open weather api)。目前我正在使用以下代码但没有成功。 let layer = this.map.getLayers().getArra
我正在尝试在 /dev/random 的机器上运行代码不会很快填满,我正在尝试使用的 Java 程序因缺少随机数而挂起。/dev/urandom产生“不太好”的随机数,但不会阻塞,对于这种情况,我宁愿
我需要 Yocto 项目的源代码包。我已经拥有整个项目的所有资源,但它们还包括开发工具。 我想有一种方法来生成将为目标图像构建的所有包的(修补的)源。因此,例如,如果目标图像包含 busybox,我想
如何对入侵者隐藏 iFrame src 假设我正在流式传输我的网络摄像头或我的电脑屏幕,这是 iframe 代码: 并且我不希望它在大多数浏览器上显示页面源中的流 URL 和检查功能! 这意
是否可以进入 Qt 源,例如qmainwindow.cpp,在 Qt Creator 中?目前我正在看到反汇编,但最好能看到源代码。 最佳答案 当然!但您可能必须首先: 转到 $QT_HOME/qt
我正在尝试创建一个包含很少动漫剧集的简单网站。我有一个关于 javascript 的问题。如何通过单击我的链接之一来更改视频源?我明白,我必须使用事件监听器,只需更改 取决于我点击的链接,但我不太擅长
我有一个带有 BindingSouce 的 DevExpress GridControl。我想清除 BindingSource 并用新数据填充它。我这样做: var list = new List()
当单击提交输入按钮时,我尝试将其他参数(选定复选框的列表)传递到服务器处理的 DataTables 表#my_table: 这可能意味着我必须将 my_table.sAjaxSource 设置为后端脚
(好吧,别对我大喊大叫,这里已经很晚了:)) 我正在研究 delta diff 工具(命令行工具或组件,只要我可以从 Delphi 2010 调用它们就可以了) 我有这个项目,我将文件上传到服务器,我
我需要解析 Yahoo Weather RSS feed 中的某个位置,例如 http://weather.yahooapis.com/forecastrss?w=44418&u=c例如,获取最高、最
我是一名优秀的程序员,十分优秀!