-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b59d126
commit 8391f4b
Showing
21 changed files
with
412 additions
and
96 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
README.md export-subst |
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
/include/ | ||
/lib/ | ||
O.*/ | ||
*.local |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
sudo: false | ||
language: c | ||
env: | ||
- BASE=3.14 STATIC=shared | ||
- BASE=3.14 STATIC=static | ||
- BASE=3.15 STATIC=shared | ||
- BASE=3.15 STATIC=static | ||
- BASE=3.16 STATIC=shared | ||
- BASE=3.16 STATIC=static | ||
install: ./build-deps.sh | ||
script: | ||
- make -j2 | ||
- make -s runtests |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
devLib2 - Library for direct MMIO access to PCI and VME64x | ||
========================================================== | ||
|
||
Michael Davidsaver <[email protected]> | ||
|
||
[Documentation and example](http://epics.sourceforge.net/devlib2/) | ||
|
||
Releases are found at: | ||
|
||
[http://sourceforge.net/projects/epics/files/](http://sourceforge.net/projects/epics/files/) | ||
|
||
Requires: [EPICS Base](http://www.aps.anl.gov/epics/) >= 3.14.8.2 | ||
|
||
VCS sources | ||
|
||
```shell | ||
git clone https://github.com/epics-modules/devlib2.git | ||
``` | ||
|
||
This is file is generated from git revision edceda7bf90fa7de9108c01a2dc7185806fe4575 | ||
|
||
<a href="https://travis-ci.org/epics-modules/devlib2"><img src="https://travis-ci.org/epics-modules/devlib2.svg">CI Build Status</img></a> |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/bin/sh | ||
set -e -x | ||
|
||
# Build base for use with https://travis-ci.org | ||
# | ||
# Set environment variables | ||
# BASE= 3.14 3.15 or 3.16 (VCS branch) | ||
# STATIC= static or shared | ||
|
||
die() { | ||
echo "$1" >&2 | ||
exit 1 | ||
} | ||
|
||
[ "$BASE" ] || die "Set BASE" | ||
|
||
CDIR="$HOME/.cache/base-$BASE-$STATIC" | ||
|
||
if [ ! -e "$CDIR/built" ] | ||
then | ||
install -d "$CDIR" | ||
( cd "$CDIR" && git clone --depth 50 --branch $BASE https://github.com/epics-base/epics-base.git base ) | ||
|
||
EPICS_BASE="$CDIR/base" | ||
|
||
case "$STATIC" in | ||
static) | ||
cat << EOF >> "$EPICS_BASE/configure/CONFIG_SITE" | ||
SHARED_LIBRARIES=NO | ||
STATIC_BUILD=YES | ||
EOF | ||
;; | ||
*) ;; | ||
esac | ||
|
||
make -C "$EPICS_BASE" -j2 | ||
|
||
touch "$CDIR/built" | ||
fi | ||
|
||
EPICS_HOST_ARCH=`sh $EPICS_BASE/startup/EpicsHostArch` | ||
|
||
echo "EPICS_BASE=$EPICS_BASE" > configure/RELEASE.local |
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
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
Oops, something went wrong.