#******************************************************************************
# @file Makefile.unix
#******************************************************************************
-OBJDIR ?= $(CURDIR)
SRCDIR ?= $(CURDIR)
-
VPATH := $(SRCDIR)
CC := gcc
-CFLAGS := -D_FILE_OFFSET_BITS=64 -I$(OBJDIR) -I$(SRCDIR)/include -O2 -Wall -Werror -Wextra -ansi -pedantic -std=c90
+CFLAGS := -D_FILE_OFFSET_BITS=64 -O2 -Wall -Werror -Wextra -ansi -pedantic -std=c90
CSRC := aout.c elks.c hashtab.c ld.c lib.c link.c map.c pe.c report.c section.c symbol.c vector.c write7x.c
endif
clean:
+
if [ -f slink ]; then rm -rf slink; fi
if [ -f slink.exe ]; then rm -rf slink.exe; fi
#******************************************************************************
# @file Makefile.w32
#******************************************************************************
-OBJDIR ?= $(CURDIR)
SRCDIR ?= $(CURDIR)
-
VPATH := $(SRCDIR)
CC := gcc
-CFLAGS := -D_FILE_OFFSET_BITS=64 -I$(OBJDIR) -I$(SRCDIR)/include -O2 -Wall -Werror -Wextra -ansi -pedantic -std=c90
+CFLAGS := -D_FILE_OFFSET_BITS=64 -O2 -Wall -Werror -Wextra -ansi -pedantic -std=c90
CSRC := aout.c elks.c hashtab.c ld.c lib.c link.c map.c pe.c report.c section.c symbol.c vector.c write7x.c
all: slink.exe
clean:
+
if exist slink ( del /q slink )
if exist slink.exe ( del /q slink.exe )
slink.exe: $(CSRC)
+
$(CC) $(CFLAGS) -o $@ $^
--- /dev/null
+#******************************************************************************
+# @file Makefile.wat
+#******************************************************************************
+SRCDIR ?= $(CURDIR)
+VPATH := $(SRCDIR)
+
+SRC := aout.c elks.c hashtab.c ld.c lib.c link.c map.c pe.c report.c section.c symbol.c vector.c write7x.c
+
+all: slink.exe
+
+slink.exe: $(SRC)
+
+ wcl -fe=$@ $^
+
+clean:
+
+ for /r %%f in (*.obj) do ( if exist %%f ( del /q %%f ) )
+ if exist slink.exe ( del /q slink.exe )
unsigned int result = 0;
for (i = 0; i < length; i++) {
- result = (((unsigned short) str[i]) << 4) + (result >> 9) + result + (result >> 3) + (((unsigned short) str[i]) << 2) - (result << 24);
+ result = (((unsigned short) str[i]) << 4) + (result >> 9) + result + (result >> 3) + (((unsigned short) str[i]) << 2) - (result << 12);
}
return result;
struct hashtab_name {
const char *chars;
- int bytes, hash;
+ unsigned int bytes, hash;
};
static unsigned long size_of_initialized_data = 0;
static unsigned long size_of_uninitialized_data = 0;
-static unsigned short translate_section_flags_to_characteristics (int flags) {
+static unsigned long translate_section_flags_to_characteristics (int flags) {
- unsigned short characteristics = 0;
+ unsigned long characteristics = 0;
if (!(flags & SECTION_FLAG_READONLY)) {
characteristics |= IMAGE_SCN_MEM_WRITE;
static void write_sections (unsigned char *data) {
unsigned char *pos = data + state->size_of_headers;
- unsigned short characteristics = 0;
+ unsigned long characteristics = 0;
struct pe_section_table_entry *hdr;
struct section *section;
}
characteristics = translate_section_flags_to_characteristics (section->flags);
- write721_to_byte_array (hdr->Characteristics, characteristics);
+ write741_to_byte_array (hdr->Characteristics, characteristics);
if (characteristics & IMAGE_SCN_CNT_CODE) {