Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Optimisation, fixe some bugs, add some comments #2

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
CMakeLists.txt
/cmake-build-debug
/target
*.class
/XMemory/target
Expand All @@ -12,3 +14,5 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
.idea
*.iml
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ clean: cleanex
cleanex:
$(foreach example_dir,$(ALL_EXAMPLE_DIRS), rm -rf $(example_dir)/*.class;)

testsources: $(ALL_TEST_CLASSES)
testsources: sources $(ALL_TEST_CLASSES)
$(JAVAC) $(JAVAFLAGS) -d $(TEST_CLASSES_DIR) -cp src:$(BASE_CLASSPATH) $(ALL_TEST_SOURCES)

tests: $(ALL_TEST_CLASSES)
tests: sources $(ALL_TEST_CLASSES)
$(JAVAC) $(JAVAFLAGS) -d $(TEST_CLASSES_DIR) -cp src:$(BASE_CLASSPATH) $(ALL_TEST_SOURCES)
$(JAVA) -ea -cp $(BASE_CLASSPATH):$(TEST_CLASSES_DIR):src -Djava.library.path=$(CPP_BUILD_DIR) tests.PersistentTestRunner
$(JAVA) -ea -cp $(BASE_CLASSPATH):$(TEST_CLASSES_DIR):src -Djava.library.path=$(CPP_BUILD_DIR) tests.PersistentTestRunner
Expand Down
170 changes: 0 additions & 170 deletions doc/allclasses-frame.html

This file was deleted.

170 changes: 0 additions & 170 deletions doc/allclasses-noframe.html

This file was deleted.

308 changes: 0 additions & 308 deletions doc/constant-values.html

This file was deleted.

Loading