Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature-bind: rak/socket_address.h:517:37: error: expected ')' before 'PRIu16' #140

Closed
Chaz6 opened this issue Dec 13, 2016 · 6 comments
Closed

Comments

@Chaz6
Copy link

Chaz6 commented Dec 13, 2016

When compiling the feature-bind branch, I experience the following error during compilation:-

/bin/sh ../../../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../..  -I. -I./.. -I./../.. -I../../.. -I/usr/include -I/usr/include  -pthread   -g -O2 -g -DDEBUG -Wall -std=c++11 -fvisibility=hidden   -MT block.lo -MD -MP -MF .deps/block.Tpo -c -o block.lo block.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../../.. -I. -I./.. -I./../.. -I../../.. -I/usr/include -I/usr/include -pthread -g -O2 -g -DDEBUG -Wall -std=c++11 -fvisibility=hidden -MT block.lo -MD -MP -MF .deps/block.Tpo -c block.cc  -fPIC -DPIC -o .libs/block.o
In file included from ./../../net/address_list.h:42:0,
                 from ./../../protocol/extensions.h:48,
                 from ./../../protocol/peer_connection_base.h:47,
                 from block.cc:44:
../../../rak/socket_address.h: In member function 'std::string rak::socket_address_inet6::pretty_address_str() const':
../../../rak/socket_address.h:517:37: error: expected ')' before 'PRIu16'
     if (snprintf(last_char, 7, ":%" PRIu16, port()) == -1)
                                     ^
../../../rak/socket_address.h:517:51: warning: spurious trailing '%' in format [-Wformat=]
     if (snprintf(last_char, 7, ":%" PRIu16, port()) == -1)
                                                   ^
../../../rak/socket_address.h:517:51: warning: too many arguments for format [-Wformat-extra-args]
../../../rak/socket_address.h:517:51: warning: spurious trailing '%' in format [-Wformat=]
../../../rak/socket_address.h:517:51: warning: too many arguments for format [-Wformat-extra-args]

The build host is Linux 3.10.0-514.2.2.el7.x86_64 (CentOS Linux release 7.3.1611).

@rakshasa
Copy link
Owner

Try now.

@Chaz6
Copy link
Author

Chaz6 commented Dec 16, 2016

I updated to commit 39402ec but it still fails to compile:-

/bin/sh ../../../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../..  -I. -I./.. -I./../.. -I../../.. -I/usr/include -I/usr/include  -pthread   -g -O2 -g -DDEBUG -Wall -std=c++11 -fvisibility=hidden   -MT block.lo -MD -MP -MF .deps/block.Tpo -c -o block.lo block.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I../../.. -I. -I./.. -I./../.. -I../../.. -I/usr/include -I/usr/include -pthread -g -O2 -g -DDEBUG -Wall -std=c++11 -fvisibility=hidden -MT block.lo -MD -MP -MF .deps/block.Tpo -c block.cc  -fPIC -DPIC -o .libs/block.o
In file included from ./../../net/address_list.h:42:0,
                 from ./../../protocol/extensions.h:48,
                 from ./../../protocol/peer_connection_base.h:47,
                 from block.cc:44:
../../../rak/socket_address.h: In member function 'std::string rak::socket_address_inet6::pretty_address_str() const':
../../../rak/socket_address.h:518:37: error: expected ')' before 'PRIu16'
     if (snprintf(last_char, 7, ":%" PRIu16, port()) == -1)
                                     ^
../../../rak/socket_address.h:518:51: warning: spurious trailing '%' in format [-Wformat=]
     if (snprintf(last_char, 7, ":%" PRIu16, port()) == -1)
                                                   ^
../../../rak/socket_address.h:518:51: warning: too many arguments for format [-Wformat-extra-args]
../../../rak/socket_address.h:518:51: warning: spurious trailing '%' in format [-Wformat=]
../../../rak/socket_address.h:518:51: warning: too many arguments for format [-Wformat-extra-args]
make[4]: *** [block.lo] Error 1

@rakshasa
Copy link
Owner

Once more.

@dwfreed
Copy link

dwfreed commented Dec 17, 2016

Still fails: https://travis-ci.org/rakshasa/libtorrent/jobs/184610769#L506

This StackOverflow answer may help: http://stackoverflow.com/a/30851225

Given that you're already deep in headers, probably the easiest way to accomplish that would be to define it on the command line.

@rakshasa
Copy link
Owner

rakshasa commented Dec 17, 2016

Well, by the C++ standard should not require __STDC_FORMAT_MACROS to be defined so this is a case of not following the standards.

I guess the correct solution is to replace all uses of <inttypes.h> with <.cinttypes.> and add an autoconf check. Since I'm busy with the feature-bind branch it's going on my todo list, unless someone is willing to make a pull request.

@SoapGentoo
Copy link

I fixed the problem properly in #142
Why would you want to check for cinttypes in Autoconf? If a C++ compiler doesn't bring its own cinttypes header to the table, you probably have much bigger problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants