mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 15:34:09 +00:00
7 lines
157 B
Bash
7 lines
157 B
Bash
|
#!/bin/bash
|
||
|
cd "${0%/*}"
|
||
|
cd ..
|
||
|
make CCDEBUG="-g" CCOPT=" -fomit-frame-pointer"
|
||
|
cd tests
|
||
|
export LUA_PATH="$PWD/?.lua;$PWD/../src/?.lua;$LUA_PATH"
|
||
|
gdb "${@:1}"
|