You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It fails with the following error messages. This is due to the fact that t/stest (and various other tests) use gettime.o and mutex.o, which rely on macros defined in arch-.h. Those macros use the arch_flags variable, but it is only available when libfio.o is linked into the code, and this is not the case for those tests.
gettime.o: In function fio_gettime': /home/thomas/projets/buildroot/output/build/fio-fio-2.7/gettime.c:163: undefined reference toarch_flags'
gettime.o: In function utime_since_now': /home/thomas/projets/buildroot/output/build/fio-fio-2.7/gettime.c:164: undefined reference toarch_flags'
gettime.o: In function mtime_since_now': /home/thomas/projets/buildroot/output/build/fio-fio-2.7/gettime.c:164: undefined reference toarch_flags'
gettime.o: In function time_since_now': /home/thomas/projets/buildroot/output/build/fio-fio-2.7/gettime.c:164: undefined reference toarch_flags'
mutex.o: In function fio_mutex_up': /home/thomas/projets/buildroot/output/build/fio-fio-2.7/mutex.c:189: undefined reference toarch_flags'
collect2: error: ld returned 1 exit status
Makefile:375: recipe for target 't/stest' failed
make[2]: *** [t/stest] Error 1
make[2]: *** Waiting for unfinished jobs....
The text was updated successfully, but these errors were encountered:
It fails with the following error messages. This is due to the fact that t/stest (and various other tests) use gettime.o and mutex.o, which rely on macros defined in arch-.h. Those macros use the arch_flags variable, but it is only available when libfio.o is linked into the code, and this is not the case for those tests.
gettime.o: In function
fio_gettime': /home/thomas/projets/buildroot/output/build/fio-fio-2.7/gettime.c:163: undefined reference toarch_flags'gettime.o: In function
utime_since_now': /home/thomas/projets/buildroot/output/build/fio-fio-2.7/gettime.c:164: undefined reference toarch_flags'gettime.o: In function
mtime_since_now': /home/thomas/projets/buildroot/output/build/fio-fio-2.7/gettime.c:164: undefined reference toarch_flags'gettime.o: In function
time_since_now': /home/thomas/projets/buildroot/output/build/fio-fio-2.7/gettime.c:164: undefined reference toarch_flags'mutex.o: In function
fio_mutex_up': /home/thomas/projets/buildroot/output/build/fio-fio-2.7/mutex.c:189: undefined reference toarch_flags'collect2: error: ld returned 1 exit status
Makefile:375: recipe for target 't/stest' failed
make[2]: *** [t/stest] Error 1
make[2]: *** Waiting for unfinished jobs....
The text was updated successfully, but these errors were encountered: