Changeset 13dfa3f9 in mainline
- Timestamp:
- 2016-04-19T17:04:15Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 17341d4
- Parents:
- 184b600
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/include/arch/barrier.h
r184b600 r13dfa3f9 54 54 NO_TRACE static inline void cpuid_serialization(void) 55 55 { 56 #ifndef __ IN_SHARED_LIBC__56 #ifndef __PIC__ 57 57 asm volatile ( 58 58 "xorl %%eax, %%eax\n" -
uspace/Makefile.common
r184b600 r13dfa3f9 270 270 -integrated-as -pipe -g -target $(CLANG_TARGET) -D__$(ENDIANESS)__ 271 271 272 LIB_CFLAGS = $(CFLAGS) -fPIC -D__IN_SHARED_LIBC__272 LIB_CFLAGS = $(CFLAGS) -fPIC 273 273 LIB_LFLAGS = $(LFLAGS) -shared -soname $(LSONAME) --whole-archive 274 274 -
uspace/lib/c/generic/libc.c
r184b600 r13dfa3f9 89 89 char **argv; 90 90 91 #ifdef __ IN_SHARED_LIBC__91 #ifdef __PIC__ 92 92 if (__pcb != NULL && __pcb->rtld_runtime != NULL) { 93 93 runtime_env = (runtime_env_t *) __pcb->rtld_runtime;
Note:
See TracChangeset
for help on using the changeset viewer.