]> gitweb.factorcode.org Git - factor.git/commitdiff
Remove dllexport from ds, update win32 makefile
authorMackenzie Straight <eizneckam@gmail.com>
Fri, 18 Feb 2005 01:11:20 +0000 (01:11 +0000)
committerMackenzie Straight <eizneckam@gmail.com>
Fri, 18 Feb 2005 01:11:20 +0000 (01:11 +0000)
Makefile.win32
native/factor.h

index 804a9999f092f7340c6ead480357f49820356cbb..ce44f6f0741030139c95f8ab2e3668e75aed1a3b 100644 (file)
@@ -22,7 +22,7 @@ OBJS = $(WIN32_OBJS) native\arithmetic.o native\array.o native\bignum.o \
        native\word.o native\compiler.o \
        native\ffi.o native\boolean.o \
        native\debug.o \
-       native\hashtable.o
+       native\hashtable.o native\walk.o
 
 default:
        @echo "Run 'make' with one of the following parameters:"
index adb5cad2da119364353a67bfa7f6ab85fb750266..ea178dddd485d45d3f39aa4d91c20986b5c2219b 100644 (file)
@@ -20,7 +20,7 @@ CELL ds_bot;
 
 /* raw pointer to datastack top */
 #ifdef FACTOR_X86
-       register DLLEXPORT CELL ds asm("esi");
+       register CELL ds asm("esi");
 #else
        CELL ds;
 #endif