Skip to content

Commit

Permalink
Merged PR #677 (v2016.01 release) onto master
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneia committed Jan 5, 2016
2 parents adbb255 + e788e7a commit d0fff55
Show file tree
Hide file tree
Showing 28 changed files with 698 additions and 213 deletions.
7 changes: 6 additions & 1 deletion gcc-preinclude.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
// See: http://www.win.tue.nl/~aeb/linux/misc/gcc-semibug.html
// https://rjpower9000.wordpress.com/2012/04/09/fun-with-shared-libraries-version-glibc_2-14-not-found/

#define _GNU_SOURCE 1

#include <features.h>

#ifndef __ASSEMBLER__
#ifdef __GLIBC__
__asm__(".symver memcpy,memcpy@GLIBC_2.2.5");
#endif

#endif
2 changes: 1 addition & 1 deletion lib/luajit/src/lib_jit.c
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ LJLIB_CF(jit_util_traceinfo)
setintfield(L, t, "link", T->link);
setintfield(L, t, "nexit", T->nsnap);
setintfield(L, t, "szmcode", T->szmcode);
setintfield(L, t, "mcode", T->mcode);
setintfield(L, t, "mcode", (int32_t)(intptr_t)T->mcode);
setintfield(L, t, "mcloop", T->mcloop);
setstrV(L, L->top++, lj_str_newz(L, jit_trlinkname[T->linktype]));
lua_setfield(L, -2, "linktype");
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ E= @echo
#Q=
#E= @:

TEST_SKIPPED="43"
export TEST_SKIPPED=43

SRCDIR = $(shell find . -type d -not -regex './obj.*' -printf '%P ')
OBJDIR = $(patsubst %,obj/%,$(SRCDIR))
Expand Down
Loading

0 comments on commit d0fff55

Please sign in to comment.