Linker bug in macOS 12.6 in macbook air M1

Viewed 77

When I am trying to run the following code

#include<bits/stdc++.h>
using namespace std; 


int main() 
{
    int n;
    cin>>n;
    vector<vector<int>> v(n, vector<int>(2));
    cout<<2<<"\n";
    return 0; 
}

using the command g++ file.cpp then it is giving the following error

0  0x1022a41a0  __assert_rtn + 140
1  0x10212ba8c  mach_o::relocatable::Parser<arm64>::parse(mach_o::relocatable::ParserOptions const&) + 4536
2  0x1020fdd38  mach_o::relocatable::Parser<arm64>::parse(unsigned char const*, unsigned long long, char const*, long, ld::File::Ordinal, mach_o::relocatable::ParserOptions const&) + 148
3  0x1021664ac  ld::tool::InputFiles::makeFile(Options::FileInfo const&, bool) + 1468
4  0x102169360  ___ZN2ld4tool10InputFilesC2ER7Options_block_invoke + 56
5  0x1c17b41f4  _dispatch_client_callout2 + 20
6  0x1c17c8f8c  _dispatch_apply_invoke_and_wait + 224
7  0x1c17c826c  _dispatch_apply_with_attr_f + 1152
8  0x1c17c847c  dispatch_apply + 108
9  0x1021691f4  ld::tool::InputFiles::InputFiles(Options&) + 616
10  0x1020eb6c0  main + 552
A linker snapshot was created at:
        /tmp/a.out-2022-09-19-011653.ld-snapshot
ld: Assertion failed: (_file->_atomsArrayCount == computedAtomCount && "more atoms allocated than expected"), function parse, file macho_relocatable_file.cpp, line 2061.
collect2: error: ld returned 1 exit status
0 Answers
Related