Flexible I/O Tester development
 help / color / mirror / Atom feed
* [patch] FreeBSD build broken due to missing -lrt
@ 2010-12-15  1:19 Bruce Cran
  2010-12-15  9:33 ` Jens Axboe
  0 siblings, 1 reply; 2+ messages in thread
From: Bruce Cran @ 2010-12-15  1:19 UTC (permalink / raw)
  To: fio

[-- Attachment #1: Type: text/plain, Size: 393 bytes --]

Hi,

The latest fio fails to link on FreeBSD because timer_create is in
librt but the -lrt flag is missing from Makefile.FreeBSD.

I also noticed a couple of compiler warnings when building with clang -
a format of "%Lu" is used but 'L' doesn't have any effect with 'u' - I
guess %llu is needed since the types are 'unsigned long long'?

I've attached patches against git HEAD.

-- 
Bruce Cran

[-- Attachment #2: Makefile.FreeBSD.diff --]
[-- Type: application/octet-stream, Size: 475 bytes --]

diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD
index e4adfca..9378b19 100644
--- a/Makefile.FreeBSD
+++ b/Makefile.FreeBSD
@@ -52,7 +52,7 @@ mandir = $(prefix)/man
 %.o: %.c
 	$(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
 fio: $(OBJS)
-	$(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm
+	$(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -lrt
 
 depend:
 	$(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) $(SOURCE) 1> .depend

[-- Attachment #3: filesetup.c.diff --]
[-- Type: application/octet-stream, Size: 769 bytes --]

diff --git a/filesetup.c b/filesetup.c
index ae893c7..bb36234 100644
--- a/filesetup.c
+++ b/filesetup.c
@@ -316,7 +316,7 @@ static int get_file_size(struct thread_data *td, struct fio_file *f)
 		return ret;
 
 	if (f->file_offset > f->real_file_size) {
-		log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name,
+		log_err("%s: offset extends end (%llu > %llu)\n", td->o.name,
 					f->file_offset, f->real_file_size);
 		return 1;
 	}
@@ -734,7 +734,7 @@ int setup_files(struct thread_data *td)
 		temp_stall_ts = 1;
 		if (!terse_output)
 			log_info("%s: Laying out IO file(s) (%u file(s) /"
-				 " %LuMB)\n", td->o.name, need_extend,
+				 " %lluMB)\n", td->o.name, need_extend,
 					extend_size >> 20);
 
 		for_each_file(td, f, i) {

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [patch] FreeBSD build broken due to missing -lrt
  2010-12-15  1:19 [patch] FreeBSD build broken due to missing -lrt Bruce Cran
@ 2010-12-15  9:33 ` Jens Axboe
  0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2010-12-15  9:33 UTC (permalink / raw)
  To: Bruce Cran; +Cc: fio

On 2010-12-15 02:19, Bruce Cran wrote:
> The latest fio fails to link on FreeBSD because timer_create is in
> librt but the -lrt flag is missing from Makefile.FreeBSD.
> 
> I also noticed a couple of compiler warnings when building with clang -
> a format of "%Lu" is used but 'L' doesn't have any effect with 'u' - I
> guess %llu is needed since the types are 'unsigned long long'?

We can just use %llu, it should be fine. Thanks Bruce, I have applied
your patch.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-12-15  9:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-15  1:19 [patch] FreeBSD build broken due to missing -lrt Bruce Cran
2010-12-15  9:33 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox