Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(489)

Unified Diff: sim/rx/configure.ac

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sim/rx/configure ('k') | sim/rx/gdb-if.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sim/rx/configure.ac
diff --git a/sim/rx/configure.ac b/sim/rx/configure.ac
index aebad940878d223adfd55444785fbe697c339d5c..185706375c5c03711a2c081dcbbc0e423de7aac6 100644
--- a/sim/rx/configure.ac
+++ b/sim/rx/configure.ac
@@ -44,14 +44,14 @@ echo enable_cycle_accurate is $enable_cycle_accurate
echo enable_cycle_stats is $enable_cycle_stats
if test "x${enable_cycle_accurate}" != xno; then
-AC_DEFINE([CYCLE_ACCURATE])
+ AC_DEFINE([CYCLE_ACCURATE], 1, [--enable-cycle-accurate])
if test "x${enable_cycle_stats}" != xno; then
- AC_DEFINE([CYCLE_STATS])
+ AC_DEFINE([CYCLE_STATS], 1, [--enable-cycle-stats])
fi
else
if test "x${enable_cycle_stats}" != xno; then
- AC_ERROR([cycle-stats not available without cycle-accurate])
+ AC_ERROR([cycle-stats not available without cycle-accurate])
fi
fi
« no previous file with comments | « sim/rx/configure ('k') | sim/rx/gdb-if.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698