Great, this sounds promising!
Testing with glxgears running results in this oscillating output:
Is that expected?
Testing with glxgears running results in this oscillating output:
Is that expected?
detect.o: In function `init_pci': detect.c:(.text.init_pci+0x7): undefined reference to `pci_system_init' detect.c:(.text.init_pci+0x67): undefined reference to `pci_id_match_iterator_create' detect.c:(.text.init_pci+0x74): undefined reference to `pci_device_probe' detect.c:(.text.init_pci+0x92): undefined reference to `pci_device_next' detect.c:(.text.init_pci+0xa2): undefined reference to `pci_iterator_destroy' ui.o: In function `percentage': ui.c:(.text.percentage+0x1b): undefined reference to `stdscr' ui.c:(.text.percentage+0x28): undefined reference to `wattr_on' ui.c:(.text.percentage+0x2f): undefined reference to `stdscr' ui.c:(.text.percentage+0x39): undefined reference to `wmove' ui.c:(.text.percentage+0x4f): undefined reference to `stdscr' ui.c:(.text.percentage+0x71): undefined reference to `whline' ui.c:(.text.percentage+0x78): undefined reference to `stdscr' ui.c:(.text.percentage+0x8c): undefined reference to `wattr_off' ui.o: In function `printcenter': ui.c:(.text.printcenter+0xaa): undefined reference to `mvprintw' ui.o: In function `printright': ui.c:(.text.printright+0xa9): undefined reference to `mvprintw' ui.o: In function `present': ui.c:(.text.present+0x2e): undefined reference to `initscr' ui.c:(.text.present+0x33): undefined reference to `noecho' ui.c:(.text.present+0x3d): undefined reference to `halfdelay' ui.c:(.text.present+0x44): undefined reference to `curs_set' ui.c:(.text.present+0x4b): undefined reference to `stdscr' ui.c:(.text.present+0x50): undefined reference to `wclear' ui.c:(.text.present+0x59): undefined reference to `start_color' ui.c:(.text.present+0x6a): undefined reference to `init_pair' ui.c:(.text.present+0x7b): undefined reference to `init_pair' ui.c:(.text.present+0x8c): undefined reference to `init_pair' ui.c:(.text.present+0x9d): undefined reference to `init_pair' ui.c:(.text.present+0xae): undefined reference to `init_pair' ui.c:(.text.present+0xb5): undefined reference to `stdscr' ui.c:(.text.present+0xe5): undefined reference to `wattr_on' ui.c:(.text.present+0xec): undefined reference to `stdscr' ui.c:(.text.present+0xf8): undefined reference to `wmove' ui.c:(.text.present+0x103): undefined reference to `stdscr' ui.c:(.text.present+0x10f): undefined reference to `whline' ui.c:(.text.present+0x142): undefined reference to `stdscr' ui.c:(.text.present+0x14e): undefined reference to `wattr_off' ui.c:(.text.present+0x195): undefined reference to `stdscr' ui.c:(.text.present+0x1a1): undefined reference to `wmove' ui.c:(.text.present+0x1a8): undefined reference to `stdscr' ui.c:(.text.present+0x1ad): undefined reference to `wclrtobot' ui.c:(.text.present+0x2d8): undefined reference to `stdscr' ui.c:(.text.present+0x373): undefined reference to `wmove' ui.c:(.text.present+0x37e): undefined reference to `acs_map' ui.c:(.text.present+0x385): undefined reference to `stdscr' ui.c:(.text.present+0x38c): undefined reference to `whline' ui.c:(.text.present+0x397): undefined reference to `stdscr' ui.c:(.text.present+0x3a1): undefined reference to `wmove' ui.c:(.text.present+0x3b0): undefined reference to `acs_map' ui.c:(.text.present+0x3b7): undefined reference to `stdscr' ui.c:(.text.present+0x3bc): undefined reference to `wvline' ui.c:(.text.present+0x3c7): undefined reference to `stdscr' ui.c:(.text.present+0x3d1): undefined reference to `wmove' ui.c:(.text.present+0x3dc): undefined reference to `acs_map' ui.c:(.text.present+0x3e3): undefined reference to `stdscr' ui.c:(.text.present+0x3e8): undefined reference to `waddch' ui.c:(.text.present+0x3f3): undefined reference to `stdscr' ui.c:(.text.present+0x3ff): undefined reference to `wattr_on' ui.c:(.text.present+0x445): undefined reference to `stdscr' ui.c:(.text.present+0x451): undefined reference to `wattr_off' ui.c:(.text.present+0x497): undefined reference to `stdscr' ui.c:(.text.present+0x4a3): undefined reference to `wattr_on' ui.c:(.text.present+0x4e7): undefined reference to `stdscr' ui.c:(.text.present+0x4f3): undefined reference to `wattr_off' ui.c:(.text.present+0x4fa): undefined reference to `stdscr' ui.c:(.text.present+0x506): undefined reference to `wattr_on' ui.c:(.text.present+0x5b5): undefined reference to `stdscr' ui.c:(.text.present+0x5c1): undefined reference to `wattr_off' ui.c:(.text.present+0x5d5): undefined reference to `stdscr' ui.c:(.text.present+0x5e1): undefined reference to `wattr_on' ui.c:(.text.present+0x708): undefined reference to `stdscr' ui.c:(.text.present+0x714): undefined reference to `wattr_off' ui.c:(.text.present+0x7ab): undefined reference to `stdscr' ui.c:(.text.present+0x7b7): undefined reference to `wattr_on' ui.c:(.text.present+0x89c): undefined reference to `stdscr' ui.c:(.text.present+0x8a8): undefined reference to `wattr_off' ui.c:(.text.present+0x8af): undefined reference to `stdscr' ui.c:(.text.present+0x8b4): undefined reference to `wrefresh' ui.c:(.text.present+0x8bb): undefined reference to `stdscr' ui.c:(.text.present+0x8c0): undefined reference to `wgetch' ui.c:(.text.present+0x8dc): undefined reference to `endwin'
--- a/Makefile 2012-07-08 16:43:32.607932237 +0200 +++ b/Makefile 2012-07-08 16:43:58.753934197 +0200 @@ -31,7 +31,7 @@ $(obj): $(wildcard *.h) version.h $(bin): $(obj) - gcc -o $(bin) $(CFLAGS) $(LDFLAGS) $(obj) + gcc -o $(bin) $(CFLAGS) $(obj) $(LDFLAGS) clean: rm -f *.o $(bin)
Comment