Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump minimum C++ standard from 11 to 14. #1787

Merged
merged 15 commits into from
Feb 16, 2021
Prev Previous commit
Next Next commit
need curand dev
  • Loading branch information
atmyers committed Feb 11, 2021
commit 07d8bb6719b6f4478b1596c6af4d2d0fa4551a49
2 changes: 1 addition & 1 deletion .github/workflows/dependencies/dependencies_nvcc9.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ sudo apt-get install -y \
cuda-minimal-build-9-2 \
cuda-nvml-dev-9-2 \
cuda-nvtx-9-2 \
cuda-curand-9.2
cuda-curand-dev-9.2

sudo ln -s cuda-9.2 /usr/local/cuda

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,11 @@ jobs:
which nvcc || echo "nvcc not in PATH!"
mkdir build
cd build
cmake .. \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DAMReX_BUILD_TUTORIALS=ON \
-DAMReX_PARTICLES=ON \
-DAMReX_GPU_BACKEND=CUDA \
cmake .. \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DAMReX_BUILD_TUTORIALS=ON \
-DAMReX_PARTICLES=ON \
-DAMReX_GPU_BACKEND=CUDA \
-DCMAKE_C_COMPILER=$(which gcc-6) \
-DCMAKE_CXX_COMPILER=$(which g++-6) \
-DCMAKE_CUDA_HOST_COMPILER=$(which g++-6) \
Expand Down