Skip to content

Commit 51e6ae4

Browse files
authored
Merge pull request #15 from CDAT/gcc7
Gcc7
2 parents a415a0b + b75573b commit 51e6ae4

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ aliases:
3232
if [ $CIRCLE_BRANCH == "master" ]; then bash ./ci-support/conda_upload.sh ; fi
3333
if [ $CIRCLE_BRANCH != "master" ]; then
3434
export LABEL="unstable";
35-
conda install -n root "conda-build<3.10" anaconda-client;
35+
conda install -n root "conda-build" anaconda-client;
3636
bash ./ci-support/conda_upload.sh;
3737
fi
3838

ci-support/conda_upload.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ echo ""
77
echo "Activating base env"
88
source activate base
99
echo "Making sure conda-build is installed"
10-
conda install "conda-build<3.10"
10+
conda install "conda-build"
1111
echo "Updating conda"
1212
conda update -y -q conda
1313

14+
1415
if [ `uname` == "Linux" ]; then
1516
OS=linux-64
1617
echo "Linux OS"
@@ -30,5 +31,5 @@ rm -rf uvcdat
3031
export BRANCH=${CIRCLE_BRANCH}
3132
python ./prep_for_build.py -b ${BRANCH}
3233

33-
conda build ${PKG_NAME} -c cdat/label/unstable -c conda-forge
34+
conda build ${PKG_NAME} -c cdat/label/nightly -c cdat/label/unstable -c conda-forge
3435
anaconda -t $CONDA_UPLOAD_TOKEN upload -u $USER -l $LABEL $CONDA_BLD_PATH/$OS/${PKG_NAME}-$VERSION.`date +%Y*`0.tar.bz2 --force

src/api/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ VPATH=@srcdir@
5151
CC = @CC@
5252
ARCH=$(shell uname -m)
5353
ifeq ($(ARCH),ia64)
54-
CC = gcc -fPIC -D__ia64
54+
CC = @CC@ -fPIC -D__ia64
5555
endif
5656
ifeq ($(ARCH),x86_64)
57-
CC = gcc -fPIC -D__x86_64__
57+
CC = @CC@ -fPIC -D__x86_64__
5858
endif
5959
CFLAGS = -I@srcdir@/../../include @CFLAGS@ $(DEBUG) -Dgrads -I@NCINC@
6060
CPPFLAGS = @CPPFLAGS@ -DSTNDALN=1 -DBYTEORDER=@GRADS_BYTEORDER@ -DGRADS_CRAY=@GRADS_CRAY@

src/cddrs/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ VPATH=@srcdir@
4343
CC = @CC@
4444
ARCH=$(shell uname -m)
4545
ifeq ($(ARCH),ia64)
46-
CC = gcc -fPIC -D__ia64
46+
CC = @CC@ -fPIC -D__ia64
4747
endif
4848
ifeq ($(ARCH),x86_64)
49-
CC = gcc -fPIC -D__x86_64__
49+
CC = @CC@ -fPIC -D__x86_64__
5050
endif
5151
CFLAGS = -I@srcdir@/../../include -I@NCINC@ -I@HDFINC@ -I@DRSINC@ @CFLAGS@ $(DEBUG) -Dgrads
5252
CPPFLAGS = @CPPFLAGS@

src/cdunif/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ VPATH=@srcdir@
5151
# Set the compiler flag for the 64-bit Opteron platform
5252
ARCH=$(shell uname -m)
5353
ifeq ($(ARCH),x86_64)
54-
CC = gcc -fPIC -D__x86_64__
54+
CC = @CC@ -fPIC -D__x86_64__
5555
else
5656
CC = @CC@
5757
endif

0 commit comments

Comments
 (0)