Project

General

Profile

Actions

Bug #2461

closed

INT64_MAX,INT64_MIN long long definition conflicts on x86_64 with firefox 17.0esr build

Added by davshao over 11 years ago. Updated over 11 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
11/24/2012
Due date:
% Done:

0%

Estimated time:

Description

On current pkgsrc master, 3.3-DEVELOPMENT x86_64, building devel/xulrunner, associated with firefox 17.0esr, fails processing a C++ header file with an error message:

In file included from ../../dist/include/mozilla/FunctionTimer.h:11,
from /usr/pkgsrc/devel/xulrunner/work/mozilla-esr17/xpcom/glue/FileUtils.cpp:20:
../../dist/include/mozilla/TimeStamp.h: In static member function 'static mozilla::TimeDuration mozilla::TimeDuration::FromTicks(double)':
../../dist/include/mozilla/TimeStamp.h:137: error: call of overloaded 'FromTicks(long long int)' is ambiguous
../../dist/include/mozilla/TimeStamp.h:123: note: candidates are: static mozilla::TimeDuration mozilla::TimeDuration::FromTicks(int64_t)
../../dist/include/mozilla/TimeStamp.h:129: note: static mozilla::TimeDuration mozilla::TimeDuration::FromTicks(double)
gmake4: *** [FileUtils.o] Error 1

The relevant lines from the original TimeStamp.h located under devel/xulrunner/work/mozilla-esr17/xpcom/ds appear to be:

static TimeDuration FromTicks(int64_t aTicks) {
TimeDuration t;
t.mValue = aTicks;
return t;
}
static TimeDuration FromTicks(double aTicks) {
// NOTE: this MUST be a >= test, because int64_t(double(INT64_MAX))
// overflows and gives LL_MININT.
if (aTicks >= double(INT64_MAX))
return TimeDuration::FromTicks(INT64_MAX);
// This MUST be a <= test.
if (aTicks <= double(INT64_MIN))
return TimeDuration::FromTicks(INT64_MIN);
return TimeDuration::FromTicks(int64_t(aTicks));
}
// Duration in PRIntervalTime units
int64_t mValue;

A patch explictly casting in the above header file TimeStamp.h both INT64_MAX and INT64_MIN to int64_t allows building to at least proceed past the previous error.

Grepping for INT64_MAX and INT64_MIN under /usr/include reveals definitions:
#define INT64_MAX 0x7fffffffffffffffLL
#define INT64_MIN (-0x7fffffffffffffffLL-1)

The compiler being used is:
$ cc --version
cc (DragonFly) 4.4.7 2012.03.13


Files

cppint64min.cpp (384 Bytes) cppint64min.cpp davshao, 11/28/2012 10:41 PM
Actions #1

Updated by davshao over 11 years ago

On DragonFly x86_64 for test file cppint64min.cpp
$ c++ -DUSECSTDINT -std=c++0x cppint64min.cpp
cppint64min.cpp: In function 'int main()':
cppint64min.cpp:22: error: call of overloaded 'printVal(long long int)' is ambiguous
cppint64min.cpp:10: note: candidates are: void TwoTypes::printVal(double)
cppint64min.cpp:14: note: void TwoTypes::printVal(int64_t)

whereas on NetBSD amd64 and Ubuntu 12.04 LTS
$ c++ -DUSECSTDINT -std=c++0x cppint64min.cpp
int64_t val = -9223372036854775808

(On Mac OS X Lion the same output occurs with command simply c++ cppint64min.cpp.)

#ifdef USECSTDINT
#include <cstdint>
#else
#include <stdint.h>
#endif
#include <iostream>

class TwoTypes {
public:
void printVal(double val) {
std::cout << "double val = " << val << "\n";
}

void printVal(int64_t val) {
std::cout << "int64_t val = " << val << "\n";
}

};

int main() {
TwoTypes t;
t.printVal(INT64_MIN);
return 0;
}

Actions #2

Updated by swildner over 11 years ago

  • Status changed from New to Feedback

Thanks, I've pushed a fix. Please try and report back.

Actions #3

Updated by davshao over 11 years ago

In combination with
commit 38aa22ba71414a9ac96065bea03c600d63f289d5
Date: Thu Nov 29 00:26:41 2012 0100
<sys/errno.h>: Try to fix errno's declaration a bit better for C
+.

the provided fix after
  1. make quickworld && make buildkernel
    on x86_64 now allows Firefox 17.0 esr to build and function correctly using pkgsrc current master. Thanks!
Actions #4

Updated by swildner over 11 years ago

  • Status changed from Feedback to Closed
Actions

Also available in: Atom PDF