C++ Logo

std-proposals

Advanced search

Re: [std-proposals] unimplemented attribute

From: Thiago Macieira <thiago_at_[hidden]>
Date: Thu, 20 Mar 2025 10:09:33 -0700
On Thursday, 20 March 2025 08:52:36 Pacific Daylight Time Sebastian Wittmeier
via Std-Proposals wrote:
> Generally, you also should describe, why it is such a bad thing, if the
> linker finds out that symbols are missing. If it is just the error message,
> which often does not refer well to the line of code calling the function,
> perhaps that can be changed.

Linkers can and do print out the line number if there's debug information
available.

int f();
int main() { f(); }

$ gcc main.c
main.c:(.text+0xa): undefined reference to `f'
$ gcc -g main.c
/tmp/main.c:2:(.text+0xa): undefined reference to `f'

-- 
Thiago Macieira - thiago (AT) macieira.info - thiago (AT) kde.org
  Principal Engineer - Intel DCAI Platform & System Engineering

Received on 2025-03-20 17:09:36