Tu as un probleme de symbole non declare : CLK_TCK
une recherche sur google m'a donne : http://www.chemie.fu-berlin.de/chemnet/use/info/libc/libc_17.html
Macro: int CLK_TCK
This is an obsolete name for CLOCKS_PER_SEC
Apparemment, c'est lie a la libc :
Essaye la commande suivante pour voir si tu l'as qq part :
# find /usr/include -depth -exec grep CLK_TCK {} ; -print
Sur mon PC, ca m'a donne :
# ifndef CLK_TCK
# define CLK_TCK CLOCKS_PER_SEC
/usr/include/time.h
All times are in CLK_TCKths of a second. */
/usr/include/sys/times.h
/* Even though CLOCKS_PER_SEC has such a strange value CLK_TCK
# define CLK_TCK ((__clock_t) __sysconf (2)) /* 2 is _SC_CLK_TCK */
/usr/include/bits/time.h
C'est donc lie a time.h ! As-tu ce fichier sous /usr/include ?
++
une recherche sur google m'a donne : http://www.chemie.fu-berlin.de/chemnet/use/info/libc/libc_17.html
Macro: int CLK_TCK
This is an obsolete name for CLOCKS_PER_SEC
Apparemment, c'est lie a la libc :
Essaye la commande suivante pour voir si tu l'as qq part :
# find /usr/include -depth -exec grep CLK_TCK {} ; -print
Sur mon PC, ca m'a donne :
# ifndef CLK_TCK
# define CLK_TCK CLOCKS_PER_SEC
/usr/include/time.h
All times are in CLK_TCKths of a second. */
/usr/include/sys/times.h
/* Even though CLOCKS_PER_SEC has such a strange value CLK_TCK
# define CLK_TCK ((__clock_t) __sysconf (2)) /* 2 is _SC_CLK_TCK */
/usr/include/bits/time.h
C'est donc lie a time.h ! As-tu ce fichier sous /usr/include ?
++