forked from KolibriOS/kolibrios
c-- :
- Fixed strange Sign size. git-svn-id: svn://kolibrios.org@9776 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
2a2a059aa9
commit
7b2b4533ba
Binary file not shown.
Binary file not shown.
@ -1,5 +1,5 @@
|
|||||||
CPPFLAGS= -m32 -fpack-struct=2 -fno-exceptions -std=c++03 -Wno-write-strings -Dstricmp=strcasecmp -Dstrnicmp=strncasecmp -DO_BINARY=0 -D_UNIX_
|
CPPFLAGS= -m32 -fpack-struct=2 -fno-exceptions -std=c++03 -Wno-write-strings -Dstricmp=strcasecmp -Dstrnicmp=strncasecmp -DO_BINARY=0 -D_UNIX_
|
||||||
LDFLAGS= -m32
|
LDFLAGS= -m32 -static
|
||||||
|
|
||||||
OBJS=$(patsubst %.cpp, %.o, $(wildcard *.cpp))
|
OBJS=$(patsubst %.cpp, %.o, $(wildcard *.cpp))
|
||||||
|
|
||||||
@ -13,3 +13,6 @@ $(TARGET): $(OBJS)
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(OBJS) $(TARGET)
|
rm -f $(OBJS) $(TARGET)
|
||||||
|
|
||||||
|
install: $(TARGET)
|
||||||
|
cp c-- ../../cmm/c--/c--.elf
|
||||||
|
@ -15,3 +15,6 @@ $(TARGET): $(OBJS)
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(OBJS) $(TARGET)
|
rm -f $(OBJS) $(TARGET)
|
||||||
|
|
||||||
|
install: $(TARGET)
|
||||||
|
cp c--.exe ../../cmm/c--/c--.exe
|
@ -414,7 +414,7 @@ struct paraminfo
|
|||||||
|
|
||||||
struct MEOSheader
|
struct MEOSheader
|
||||||
{
|
{
|
||||||
unsigned char sign[25];
|
unsigned char sign[8];
|
||||||
unsigned long vers;
|
unsigned long vers;
|
||||||
unsigned long start;
|
unsigned long start;
|
||||||
unsigned long size;
|
unsigned long size;
|
||||||
|
Loading…
Reference in New Issue
Block a user