Skip to content

Commit

Permalink
Add vxworks support (#14)
Browse files Browse the repository at this point in the history
* -Removed printfs. Fixes #8.

* -Switchedd DWARF parsing output to DEBUG

* -Absolute elf paths are enforced now
-TODO:Update unit tests

* -Unit tests have been updated; absolute elf paths are tested now

* Fixes to the Makefile. It works with Makefile v3.80 now.

* Adding additional forms.

* Completed adding the necessary patterns to support VxWorks 6.9

* -Handle endianess properly when writing to database
-Use libelf macros for endianess

* Resolved merge request comment to add additional comments.

* -Goodbye xenial...

Co-authored-by: lorenzo-gomez-windhover <[email protected]>
  • Loading branch information
mbenson1 and lorenzo-gomez-windhover authored Mar 11, 2021
1 parent 2733161 commit fdd57f0
Show file tree
Hide file tree
Showing 5 changed files with 1,585 additions and 226 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ script:

jobs:
include:
- os: linux
dist: xenial
- os: linux
dist: bionic
- os: linux
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ROOT_DIR :=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
mkfile_path := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
ROOT_DIR := $(shell cd $(shell dirname $(mkfile_path)); pwd)
BUILD_DIR := $(ROOT_DIR)/build
COVERAGE_DIR := $(BUILD_DIR)/coverage

Expand Down
Loading

0 comments on commit fdd57f0

Please sign in to comment.