Changeset 042fbe0 in mainline
- Timestamp:
- 2011-05-01T19:00:40Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 53d9ee9, 694ca93f, 750636a
- Parents:
- e175d69
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
re175d69 r042fbe0 122 122 ifeq ($(CONFIG_BUILD_SHARED_LIBS), y) 123 123 RD_LIBS += \ 124 $(USPACE_PATH)/lib/test/libtest.so.0 \ 125 $(USPACE_PATH)/lib/c/libc.so.0 \ 126 $(USPACE_PATH)/lib/softint/libsoftint.so.0 124 $(USPACE_PATH)/lib/c/libc.so0 \ 125 $(USPACE_PATH)/lib/softint/libsofti.so0 127 126 RD_APPS += \ 128 127 $(USPACE_PATH)/app/dltest/dltest -
tools/mkfat.py
re175d69 r042fbe0 190 190 parts = name.split('.') 191 191 192 if (len(parts) > 0):192 if len(parts) > 0: 193 193 fname = parts[0] 194 194 else: 195 195 fname = '' 196 196 197 if len(fname) > 8: 198 sys.stdout.write("mkfat.py: error: Directory entry " + name + 199 " base name is longer than 8 characters\n") 200 sys.exit(1); 201 197 202 return (fname + ' ').upper()[0:8] 198 203 … … 201 206 parts = name.split('.') 202 207 203 if (len(parts) > 1):208 if len(parts) > 1: 204 209 ext = parts[1] 205 210 else: 206 211 ext = '' 212 213 if len(parts) > 2: 214 sys.stdout.write("mkfat.py: error: Directory entry " + name + 215 " has more than one extension\n") 216 sys.exit(1); 217 218 if len(ext) > 3: 219 sys.stdout.write("mkfat.py: error: Directory entry " + name + 220 " extension is longer than 3 characters\n") 221 sys.exit(1); 207 222 208 223 return (ext + ' ').upper()[0:3] -
uspace/Makefile.common
re175d69 r042fbe0 130 130 LINKER_SCRIPT ?= $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld 131 131 else 132 BASE_LIBS = $(LIBC_PREFIX)/libc.so .0 $(LIBSOFTINT_PREFIX)/libsoftint.so.0132 BASE_LIBS = $(LIBC_PREFIX)/libc.so0 $(LIBSOFTINT_PREFIX)/libsofti.so0 133 133 LFLAGS = -Bdynamic 134 134 LINKER_SCRIPT ?= $(LIBC_PREFIX)/arch/$(UARCH)/_link-dlexe.ld -
uspace/lib/c/Makefile
re175d69 r042fbe0 52 52 LIBRARY = libc 53 53 SLIBRARY = libc.so.0.0 54 LSONAME = libc.so .054 LSONAME = libc.so0 55 55 56 56 -
uspace/lib/softint/Makefile
re175d69 r042fbe0 32 32 LIBRARY = libsoftint 33 33 SLIBRARY = libsoftint.so.0.0 34 LSONAME = libsofti nt.so.034 LSONAME = libsofti.so0 35 35 36 36 SOURCES = \ 37 generic/division.c \37 generic/division.c \ 38 38 generic/multiplication.c 39 39
Note:
See TracChangeset
for help on using the changeset viewer.