Changeset 259 for soft/giet_vm/Makefile


Ignore:
Timestamp:
Dec 5, 2013, 12:45:34 PM (11 years ago)
Author:
devigne
Message:

giet_fat32/fat32.c :
Added _fat_write function. At the moment it does not support the creation of a
new file (the writing must exist in the disk image) and does not support the
allocation of additional cluster from the original file.

create_dmg :
Bug fix for support Linux (The tree files were not consistent with the
pathnames in boot.c).

giet_libs/stdlib.c and stdlib.h :
Added stdlib file. At the moment they only contain the atoi function.

giet_libs/stdio.h :
Bug fix in SYSCALL DEFINE. SYSCALL_FAT_READ, WRITE, CLOSE, LSEEK had the same
value.

Makefile :
Added compilation line for stdlib.o

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/Makefile

    r258 r259  
    290290        $(CC) $(CFLAGS) $(USER_INCLUDE) -c -o $@ $<
    291291
     292build/libs/stdlib.o: giet_libs/stdlib.c \
     293                     giet_libs/stdlib.h \
     294                     giet_config.h
     295        $(CC) $(CFLAGS) $(USER_INCLUDE) -c -o $@ $<
     296
    292297build/libs/string.o: giet_libs/string.c \
    293298                     giet_libs/string.h \
Note: See TracChangeset for help on using the changeset viewer.