-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from pulp-platform/misc-config
Remove pre-autotools hacks
- Loading branch information
Showing
5 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
dnl SPDX-License-Identifier: Apache-2.0 | ||
dnl Author: Robert Balas <[email protected]> | ||
AC_INIT([trdb], [0.1], [[email protected]]) | ||
AC_INIT([trdb], [0.2], [[email protected]]) | ||
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) | ||
AC_PROG_CC | ||
AC_PROG_RANLIB | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,18 +19,18 @@ | |
|
||
/* | ||
* Author: Robert Balas ([email protected]) | ||
* Description: trdb -- trace debugger tools for the PULP platform, compress | ||
* Description: trdb -- Trace Debugger Tools for RISC-V E-Trace, compress | ||
* and decompress instruction traces | ||
*/ | ||
|
||
#define PACKAGE "foo" /* quick hack for bfd if not using autotools */ | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <argp.h> | ||
#include <stdbool.h> | ||
#include <string.h> | ||
#include <stdint.h> | ||
#include <sys/queue.h> | ||
#include "config.h" | ||
#include "bfd.h" | ||
#include "utils.h" | ||
#include "trace_debugger.h" | ||
|
@@ -39,10 +39,10 @@ | |
|
||
#define TRDB_NUM_ARGS 1 | ||
|
||
const char *argp_program_version = "trdb 0.1"; | ||
const char *argp_program_bug_address = "<[email protected]>"; | ||
const char *argp_program_version = PACKAGE_STRING; | ||
const char *argp_program_bug_address = PACKAGE_BUGREPORT; | ||
|
||
static char doc[] = "trdb -- trace debugger tools for the PULP platform"; | ||
static char doc[] = "trdb -- Trace Debugger Tools for RISC-V E-Trace"; | ||
static char args_doc[] = "TRACE-OR-PACKETS"; | ||
|
||
#define TRDB_OPT_DEMANGLE 1 | ||
|