Cent OS 6.7 में g ++ 4.9.2 संकलन होगा लेकिन लिंक नहीं


0

मैं सेंटोस 6.7 का उपयोग कर रहा हूं और devtools-3 वितरण स्थापित किया है और इसे 4.9.2 डिफ़ॉल्ट बनाने के लिए "सक्षम" किया है। एक साधारण सी ++ प्रोग्राम जो रेगेक्स का उपयोग करता है, संकलन करेगा, लेकिन लिंक नहीं करता है।

// regex_search example
#include <iostream>
#include <string>
#include <regex>

int main()
{
    std::string s("this subject has a submarine as a subsequence");
    std::smatch m;
    std::regex e("\\b(sub)([^ ]*)");   // matches words beginning by "sub"

    std::cout << "Target sequence: " << s << std::endl;
    std::cout << "Regular expression: /\\b(sub)([^ ]*)/" << std::endl;
    std::cout << "The following matches and submatches were found:" << std::endl;

    while (std::regex_search(s, m, e)) {
        for (auto x : m) std::cout << x << " ";
        std::cout << std::endl;
        s = m.suffix().str();
    }

    return 0;
}

आपको हमें अपना संकलन और लिंक कमांड और सटीक त्रुटि संदेश दिखाना होगा - कृपया संपादित करें आपका सवाल उस जानकारी को जोड़ने के लिए।
Toby Speight

जवाबों:


0

मैं यहां अपने प्रश्न का उत्तर दे सकता हूं। यह मेरी ओर से एक मूर्खतापूर्ण गलती थी। मैंने ठीक से devtools-3 distro स्थापित नहीं किया था।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.