Visual C ++链接器崩溃(VS2008 SP1)

时间:2011-05-31 20:30:30

标签: c++ visual-studio visual-c++

下面的一段代码,用于生成素数,在运行调试时按预期编译和运行,但在Release模式下构建时似乎总是让启动器崩溃:

#include <vector>
#include <algorithm>
#include <cstdlib>
#include <iostream>

template<typename T> class PrimeGen {
    struct Elim {
        T p ;
        T e ;
    } ;

    class Elim_cmp {
    public:
        bool operator()(const Elim& e1, const Elim& e2) { return e1.e > e2.e; }
    } ;

    std::vector<Elim> elim_heap ;
    T last ;

public:
    PrimeGen() {
        Elim e0 = { 2, 4 } ;
        elim_heap.reserve(1024) ;
        elim_heap.push_back(e0) ;
        last = 2 ;
    }

    T next() {
        T n = last ;
        bool prime;
        do {
            n ++ ;
            prime = true ;
            while(n == elim_heap.front().e) {
                if(prime) prime = false ;
                std::pop_heap(elim_heap.begin(), elim_heap.end(), Elim_cmp()) ;
                Elim& elim = elim_heap.back() ;
                elim.e = elim.p + n ;
                std::push_heap(elim_heap.begin(), elim_heap.end(), Elim_cmp()) ;
            }
        } while(!prime) ;
        Elim e = { n, 2*n } ;
        elim_heap.push_back( e ) ;
        std::push_heap(elim_heap.begin(), elim_heap.end(), Elim_cmp()) ;
        return last = n ;
    }
} ;

int main()
{
    using namespace std ;
    PrimeGen<unsigned int> pgen ;
    for(int i=0; i<100; i++) {
        cout << pgen.next() << endl ;
    }
    system("pause") ;
}

谁能明白为什么会发生这种情况?或者我遇到过一个罕见的实例,其中编译器而不是代码应该受到责备?

我得到的错误如下:

error PRJ0002 : Error result -1073741819 returned from 'C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\mt.exe'.

如果运行Visual Studio的其他人花时间尝试在发布模式下构建代码(我已经删除了任何外部依赖项,那么它应该只是c&amp; p)我&#39 ; d非常有责任。

更新:在进一步审核时,似乎mt.exe在发布模式下一直为我崩溃,即使对于简单的&#34; Hello World&#34;代码,所以我的安装一定有问题。我将重新安装所有应该有希望解决此问题的方法。版主,请随时关闭此问题。

1 个答案:

答案 0 :(得分:0)

某些程序(例如防病毒程序)在链接器尝试嵌入清单文件的同时扫描file.exe。