Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rubinius/rubinius
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 043cd9d2cb91
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 25554dc639c2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 21, 2014

  1. Fixes #3134 causing linker error due to undefined references

    Added missing definitions of DefaultCodeSlabSize, DefaultSlabSize, and
    DefaultSizeThreshold static variables of RubiniusJITMemoryManager class.
    jinesh committed Sep 21, 2014
    Copy the full SHA
    d7ed420 View commit details
  2. Merge pull request #3136 from jineshkj/master

    Fixes #3134 causing linker error due to undefined references
    Yorick Peterse committed Sep 21, 2014
    Copy the full SHA
    25554dc View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 vm/llvm/jit_memory_manager.cpp
4 changes: 4 additions & 0 deletions vm/llvm/jit_memory_manager.cpp
Original file line number Diff line number Diff line change
@@ -558,6 +558,10 @@ const size_t RubiniusJITMemoryManager::DefaultCodeSlabSize = 512 * 1024;
const size_t RubiniusJITMemoryManager::DefaultSlabSize = 64 * 1024;

const size_t RubiniusJITMemoryManager::DefaultSizeThreshold = 16 * 1024;
#else
const size_t RubiniusJITMemoryManager::DefaultCodeSlabSize;
const size_t RubiniusJITMemoryManager::DefaultSlabSize;
const size_t RubiniusJITMemoryManager::DefaultSizeThreshold;
#endif

}