Skip to content

Commit

Permalink
Merge pull request #248 from rtburns-jpl/alos-fix
Browse files Browse the repository at this point in the history
Fix alos bindings
  • Loading branch information
rtburns-jpl authored Mar 5, 2021
2 parents afb5cce + e120774 commit 3cd9903
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ jobs:
topsApp.py --help --steps
stripmapApp.py --help --steps
python3 -c "import isce"
python3 -c "import isce; from isceobj.Sensor import SENSORS as s; [s[k]() for k in s]"
build:
docker:
- image: docker:stable-git
Expand Down Expand Up @@ -169,9 +170,8 @@ jobs:
name: Install dependencies
command: |
apk add --no-cache \
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev
pip install \
docker-compose awscli
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev \
docker-compose aws-cli
- run:
name: Build docker image
command: |
Expand All @@ -195,9 +195,8 @@ jobs:
name: Install dependencies
command: |
apk add --no-cache \
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev
pip install \
docker-compose awscli
python3-dev py3-pip bash pigz build-base libffi-dev openssl-dev \
docker-compose aws-cli
- run:
name: Build docker image
command: |
Expand Down
3 changes: 2 additions & 1 deletion components/isceobj/Sensor/bindings/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ libList2 = ['cosar','DataAccessor','InterleavedAccessor']
envSensor1.PrependUnique(LIBS = libList1)
envSensor2.PrependUnique(LIBS = libList2)

alosmodule = envSensor1.LoadableModule(target = 'alos.abi3.so', source = 'alosmodule.cpp')
alosmodule = envSensor1.LoadableModule(target = 'alos.abi3.so',
source = [ 'alosmodule.cpp', '../src/ALOS_pre_process/image_sio.c' ])
envSensor1.Install(install,alosmodule)

cosarmodule = envSensor2.LoadableModule(target = 'cosar.abi3.so', source = 'cosarmodule.cpp')
Expand Down

0 comments on commit 3cd9903

Please sign in to comment.