This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
atoll and strtoll on hpux
- From: Thomas Porschberg <thomas dot porschberg at osp-dd dot de>
- To: gcc-help at gcc dot gnu dot org
- Date: Tue, 16 Jul 2002 11:42:59 +0200
- Subject: atoll and strtoll on hpux
- Organization: OSP
I configured gcc3.1 on HPUX with
Reading specs from /opt/gcc/gcc-3.1/lib/gcc-lib/hppa1.1-hp-hpux11.00/3.1/specs
Configured with: gcc-3.1/configure --enable-languages=c,c++ --prefix=/opt/gcc/gcc-3.1 --disable-threads --with-gnu-as --with-as=/opt/binutils/bin/as
Thread model: single
gcc version 3.1
and I read in the documentation:
The C99 features depend on the --enable-c99 configure flag.
This flag is already on by default, but it can be disabled by the
user. Also, the configuration machinery will disable it if the
necessary support for C99 (e.g., header files) cannot be found.
However a small program complains about
/usr/ccs/bin/ld: Unsatisfied symbols:
strtoll (code)
collect2: ld returned 1 exit status
Is atoll/strtoll not available under HPUX?
If so how can I convert "big numbers" from string to digits?
--