Changes in uspace/Makefile.common [d7b7f5e:8620b2f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile.common
rd7b7f5e r8620b2f 45 45 # 46 46 # POSIX_COMPAT set to 'y' to use POSIX compatibility layer 47 # NEEDS_MATH set to 'y' to add implementation of mathematical functions 47 48 # 48 49 # Optionally, for a binary: … … 109 110 LIBSOFTFLOAT_PREFIX = $(LIB_PREFIX)/softfloat 110 111 LIBSOFTINT_PREFIX = $(LIB_PREFIX)/softint 112 LIBMATH_PREFIX = $(LIB_PREFIX)/math 111 113 112 114 LIBPOSIX_PREFIX = $(LIB_PREFIX)/posix … … 233 235 endif 234 236 237 # Do we need math? 238 ifeq ($(NEEDS_MATH),y) 239 BASE_LIBS += $(LIBMATH_PREFIX)/libmath.a 240 endif 241 235 242 ## Setup platform configuration 236 243 # … … 244 251 245 252 ifeq ($(COMPILER),gcc_cross) 253 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS) 254 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 255 endif 256 257 ifeq ($(COMPILER),gcc_helenos) 246 258 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS) 247 259 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
Note:
See TracChangeset
for help on using the changeset viewer.