Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SMPStaticAnalyzer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Open Source Software
SMPStaticAnalyzer
Commits
48ec722e
Commit
48ec722e
authored
13 years ago
by
jdh8d
Browse files
Options
Downloads
Patches
Plain Diff
Added --enable-reduced-analysis configure option
parent
f471a981
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile.in
+1
-1
1 addition, 1 deletion
Makefile.in
configure
+1856
-1159
1856 additions, 1159 deletions
configure
configure.in
+9
-0
9 additions, 0 deletions
configure.in
with
1866 additions
and
1160 deletions
Makefile.in
+
1
−
1
View file @
48ec722e
...
...
@@ -25,7 +25,7 @@ install:
cp
SMPStaticAnalyzer.plx
${
IDAROOT
}
/plugins
clean
:
rm
$(
OBJS
)
SMPStaticAnalyzer.plx
rm
-f
$(
OBJS
)
SMPStaticAnalyzer.plx
.PHONY
:
@
if
[
"
${
IDAROOT
}
"
X
=
"X"
]
;
then
echo
Please
set
IDAROOT
;
exit
1
;
fi
...
...
This diff is collapsed.
Click to expand it.
configure
+
1856
−
1159
View file @
48ec722e
This diff is collapsed.
Click to expand it.
configure.in
+
9
−
0
View file @
48ec722e
AC_INIT()
AC_ARG_ENABLE([debugging], [ --enable-debugging enable -g when compiling ])
AC_ARG_ENABLE([reducedanalysis], [ --enable-reducedanalysis reduce the amount of in-depth analysis (useful for large programs that exhaust memory)])
AC_CANONICAL_HOST
EXTRA_CFLAGS=-O3
...
...
@@ -8,5 +13,9 @@ if test "$enable_debugging" = yes; then
EXTRA_CFLAGS=-g
fi
if test "$enable_reducedanalysis" = yes; then
EXTRA_CFLAGS="${EXTRA_CFLAGS} -DSMP_REDUCED_ANALYSIS"
fi
AC_SUBST(EXTRA_CFLAGS)
AC_OUTPUT(Makefile)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment