Changeset 4c14b88 in mainline for uspace/Makefile.common
- Timestamp:
- 2013-12-31T07:57:14Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b973dc
- Parents:
- 6297465 (diff), 208b5f5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/Makefile.common (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile.common
r6297465 r4c14b88 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 … … 143 145 LIBHTTP_PREFIX = $(LIB_PREFIX)/http 144 146 LIBURI_PREFIX = $(LIB_PREFIX)/uri 147 148 LIBMBR_PREFIX = $(LIB_PREFIX)/mbr 149 LIBGPT_PREFIX = $(LIB_PREFIX)/gpt 145 150 146 151 ifeq ($(STATIC_NEEDED),y) … … 233 238 endif 234 239 240 # Do we need math? 241 ifeq ($(NEEDS_MATH),y) 242 BASE_LIBS += $(LIBMATH_PREFIX)/libmath.a 243 endif 244 235 245 ## Setup platform configuration 236 246 # … … 244 254 245 255 ifeq ($(COMPILER),gcc_cross) 256 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS) 257 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 258 endif 259 260 ifeq ($(COMPILER),gcc_helenos) 246 261 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS) 247 262 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
Note:
See TracChangeset
for help on using the changeset viewer.
