Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
4033200e
Commit
4033200e
authored
May 10, 2017
by
Brenden Blanco
Committed by
GitHub
May 10, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1157 from drepper/fedora-compile
Fedora compile
parents
3263805b
e674174e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
cmake/FindLuaJIT.cmake
cmake/FindLuaJIT.cmake
+2
-2
src/cc/bcc_proc.c
src/cc/bcc_proc.c
+1
-1
No files found.
cmake/FindLuaJIT.cmake
View file @
4033200e
...
...
@@ -31,7 +31,7 @@
FIND_PATH
(
LUAJIT_INCLUDE_DIR lua.h
HINTS
$ENV{LUAJIT_DIR}
PATH_SUFFIXES
include/luajit-2.0 include/luajit2.0 include/luajit include/luajit-2.1 include
PATH_SUFFIXES
luajit-2.0 luajit2.0 luajit luajit-2.1
PATHS
~/Library/Frameworks
/Library/Frameworks
...
...
@@ -44,7 +44,7 @@ FIND_PATH(LUAJIT_INCLUDE_DIR lua.h
)
FIND_LIBRARY
(
LUAJIT_LIBRARY
NAMES libluajit-51.a libluajit-5.1.a libluajit.a
NAMES libluajit-51.a libluajit-5.1.a libluajit.a
libluajit-5.1.so
HINTS
$ENV{LUAJIT_DIR}
PATH_SUFFIXES lib64 lib
...
...
src/cc/bcc_proc.c
View file @
4033200e
...
...
@@ -311,7 +311,7 @@ static bool match_so_flags(int flags) {
return
(
sizeof
(
void
*
)
==
8
);
}
return
true
;
return
sizeof
(
void
*
)
==
4
;
}
static
bool
which_so_in_process
(
const
char
*
libname
,
int
pid
,
char
*
libpath
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment