xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* Error when Glib cross compiled into Mini-OS without the support of "_POSIX_THREADS"
@ 2014-09-25  9:08 Lele MA
  2014-09-25 10:56 ` Ian Campbell
  0 siblings, 1 reply; 6+ messages in thread
From: Lele MA @ 2014-09-25  9:08 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 1612 bytes --]

Hi all,

I am trying to cross compile Glib into xen stubdom (based on Mini-OS). Does anyone knows how to cross compile the library into mini-OS?


I add the 'cross-glib' target in Makefile. The cross compilation and installation are succeed.

But when cross compiled with the main.c that include <glib.h>, it yields:
        cross-root-x86_64/x86_64-xen-elf/include/glib-2.0/glib/deprecated/gthread.h:162:5: error: unknown type name ‘pthread_t’
        make[1]: *** [main.o] Error 1

The Makefile rules like this:


    TARGET_CPPFLAGS += -isystem $(CROSS_PREFIX)/$(GNU_TARGET_ARCH)-xen-elf/include/glib-2.0  

    TARGET_CPPFLAGS += -isystem $(CROSS_PREFIX)/$(GNU_TARGET_ARCH)-xen-elf/lib/glib-2.0/include


     .PHONY: cross-glib
     cross-glib: glib-$(GLIB_VERSION) $(NEWLIB_STAMPFILE)
           ( cd $< && \
            CC_FOR_TARGET="$(CC) $(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" ./configure --prefix=$(CROSS_PREFIX)/$(GNU_TARGET_ARCH)-xen-elf --verbose --host=$(GNU_TARGET_ARCH)-xen-elf && \
            $(MAKE) DESTDIR= && \
            $(MAKE) DESTDIR= install )
     .PHONY: $(CROSS_ROOT)
     $(CROSS_ROOT): cross-newlib cross-zlib cross-libpci cross-glib

Then I compile the c-stubdom with command "make c-stubdom"
I find pthread_t is defined in <sys/types.h>, which is included in 'pthread.h':
      #if defined(_POSIX_THREADS)
      #include <sys/types.h>
      #include <time.h>
      #include <sys/sched.h>
Does it mean the system doesn't define "_POSIX_THREADS"?
If so, can I still use the glib in the Mini-OS without the support of "_POSIX_THREADS"?

Any advice will be appreciated!

Lele Ma

[-- Attachment #1.2: Type: text/html, Size: 3067 bytes --]

[-- Attachment #2: Type: text/plain, Size: 126 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

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

end of thread, other threads:[~2014-09-25 16:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-25  9:08 Error when Glib cross compiled into Mini-OS without the support of "_POSIX_THREADS" Lele MA
2014-09-25 10:56 ` Ian Campbell
2014-09-25 12:50   ` Lele MA
2014-09-25 12:55     ` Ian Campbell
2014-09-25 15:41       ` Antti Kantee
2014-09-25 16:56     ` Marcin Cieslak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).