Skip to content

Commit

Permalink
update gcc to gxx
Browse files Browse the repository at this point in the history
  • Loading branch information
egluckthaler committed Dec 18, 2023
1 parent 433bc8e commit e4c9852
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conda_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |
conda config --add channels bioconda
conda config --add channels conda-forge
conda install -c conda-forge gcc_linux-64
conda install -c conda-forge gxx_linux-64
conda install conda-build conda-verify
conda build .
# This step installs conda-build and then uses it to build your Conda package.
Expand Down
2 changes: 1 addition & 1 deletion CNEFinder/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MF= Makefile

CC= g++
CC= x86_64-conda-linux-gnu-g++

CFLAGS= -g -fopenmp -D_USE_OMP -msse4.2 -O3 -fomit-frame-pointer -funroll-loops

Expand Down
4 changes: 2 additions & 2 deletions meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ build:
requirements:
build:
- python=3.8.*
- conda-forge::gcc_linux-64
- conda-forge::gxx_linux-64
- make
run:
- python=3.8.* # Add your runtime dependencies here
- conda-forge::gcc_linux-64
- conda-forge::gxx_linux-64
- mummer4=4.0.0
- bedtools=2.30.0
- sourmash>=4.6
Expand Down

0 comments on commit e4c9852

Please sign in to comment.