mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
fix Windows build
This commit is contained in:
parent
88d614eb25
commit
b063f10ad5
1
makefile
1
makefile
@ -384,6 +384,7 @@ ifeq ($(platform),windows)
|
|||||||
strip = x86_64-w64-mingw32-strip --strip-all
|
strip = x86_64-w64-mingw32-strip --strip-all
|
||||||
else
|
else
|
||||||
build-system = windows
|
build-system = windows
|
||||||
|
cflags += -DTARGET_PLATFORM_WINDOWS
|
||||||
common-cflags += "-I$(JAVA_HOME)/include/win32"
|
common-cflags += "-I$(JAVA_HOME)/include/win32"
|
||||||
build-cflags = $(common-cflags) -I$(src) -I$(inc) -mthreads
|
build-cflags = $(common-cflags) -I$(src) -I$(inc) -mthreads
|
||||||
openjdk-extra-cflags =
|
openjdk-extra-cflags =
|
||||||
|
@ -8392,6 +8392,12 @@ class MyProcessor: public Processor {
|
|||||||
difference(&(t->virtualCallTarget), t));
|
difference(&(t->virtualCallTarget), t));
|
||||||
fprintf(stderr, "virtualCallIndex %d\n",
|
fprintf(stderr, "virtualCallIndex %d\n",
|
||||||
difference(&(t->virtualCallIndex), t));
|
difference(&(t->virtualCallIndex), t));
|
||||||
|
fprintf(stderr, "heapImage %d\n",
|
||||||
|
difference(&(t->heapImage), t));
|
||||||
|
fprintf(stderr, "codeImage %d\n",
|
||||||
|
difference(&(t->codeImage), t));
|
||||||
|
fprintf(stderr, "thunkTable %d\n",
|
||||||
|
difference(&(t->thunkTable), t));
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user