Project

General

Profile

Actions

Bug #2743

closed

error: 'to_string' is not a member of 'std' when cross-compiling NFD for OpenWRT

Added by Mathias Gibbens about 9 years ago. Updated almost 9 years ago.

Status:
Closed
Priority:
Normal
Category:
Build
Target version:
Start date:
04/10/2015
Due date:
% Done:

100%

Estimated time:

Description

Today I was working on cross-compiling NFD 0.3.1 for OpenWRT. When I do, I get this error (after fixing a different issue reported in bug #2299):

../tools/ndn-autoconfig/base-dns.cpp: In member function 'std::string ndn::tools::autoconfig::BaseDns::parseSrvRr(const ndn::tools::autoconfig::BaseDns::QueryAnswer&, int)':
../tools/ndn-autoconfig/base-dns.cpp:163:14: error: 'to_string' is not a member of 'std'
   uri.append(std::to_string(convertedPort));

I found a similar issue in another project at https://bitbucket.org/fenics-project/dolfin/commits/066b8cfe, and changing std::to_string to boost::lexical_cast<std::string> seems to fix the problem.

Opinions?


Related issues 1 (0 open1 closed)

Related to ndn-cxx - Bug #3303: error: 'to_string' is not a member of 'std' when cross-compiling ndn-cxx for OpenWRTRejected10/29/2015

Actions
Actions #1

Updated by Davide Pesavento about 9 years ago

  • Target version set to Unsupported

This appears to be related to uClibc, the C library used by OpenWRT. See also https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58393

Actions #2

Updated by Mathias Gibbens about 9 years ago

This also affects ./rib/fib-updater.cpp in NFD's master branch.

While waiting for uClibc to be updated, would there be any issues stopping us from switching to the boost function? NFD is already pulling in those libraries so there wouldn't be any extra dependencies and doing so would help ensure that the NFD code compiles nicely in many different environments.

Actions #3

Updated by Alex Afanasyev about 9 years ago

In many places, I personally tried to reduce use of boost::lexical_cast, as it is suppose to be slower than to_string. I would suggest that we better add an emulation of to_string specifically for uClibc platform (and may be some others).

Actions #4

Updated by Junxiao Shi about 9 years ago

I would suggest that we better add an emulation of to_string specifically for uClibc platform (and may be some others).

It's unnecessary to use platform-specific emulation.

Instead, detect this feature in .waf-tools/compiler-features.py, and fallback to boost::lexical_cast<std::string> if std::to_string isn't detected.

Actions #5

Updated by Alex Afanasyev about 9 years ago

I disagree with this. Having dependent code (I'm assuming you're suggesting ifdefs all over the place) makes implementation cumbersome...

So. Either we do emulation, figure out flags to allow gcc on these platforms to expose to_string, or fall back to lexical_cast (this would be my last resort).

Actions #6

Updated by Alex Afanasyev about 9 years ago

@Mathias. We have to_string in a few other places. All of them cause the error or the compilation simply stopped at the first error?

Actions #7

Updated by Junxiao Shi about 9 years ago

I'm assuming you're suggesting ifdefs all over the place

You misunderstood note-4.

#ifdef appears only in common.hpp, which enables:

namespace std {

template<typename V>
std::string
to_string(const V& v)
{
  return boost::lexical_cast<std::string>(v);
}

} // namespace std

The point is, emulation is enabled as a result of feature detection, not as a result of library version detection.

Actions #8

Updated by Mathias Gibbens about 9 years ago

@Alex, I did a grep to find where ever std::to_string was used in the NFD code. In the current master there are only two occurrences. The build stops at the first one, but either of them will cause the error.

@Junxiao, I like your proposed solution.

Actions #9

Updated by Alex Afanasyev about 9 years ago

  • Status changed from New to In Progress
  • Assignee set to Alex Afanasyev

Yes, I misunderstood what you were suggesting. +1 to the proposal.

Actions #10

Updated by Alex Afanasyev about 9 years ago

  • Status changed from In Progress to Code review

@Mathias, can you confirm that http://gerrit.named-data.net/1970 fixes the issue?

Actions #11

Updated by Alex Afanasyev about 9 years ago

  • % Done changed from 0 to 100
Actions #12

Updated by Mathias Gibbens about 9 years ago

I can confirm that the patch works and resolves compilation error I was getting before. Thanks!

Actions #13

Updated by Davide Pesavento almost 9 years ago

  • Status changed from Code review to Closed
Actions #14

Updated by Junxiao Shi over 8 years ago

  • Related to Bug #3303: error: 'to_string' is not a member of 'std' when cross-compiling ndn-cxx for OpenWRT added
Actions

Also available in: Atom PDF