Skip to content

Commit

Permalink
Support more recent compilers by specifying the C++ standard
Browse files Browse the repository at this point in the history
  • Loading branch information
EricKutschera committed Jun 19, 2020
1 parent 2857698 commit 067188a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Tested with
* numpy (1.16.5)
- BLAS, LAPACK
- GNU Scientific Library (GSL 2.5)
- GCC (5.4.0)
- GCC (>=5.4.0)
- gfortran (Fortran 77)
- CMake (3.15.4)
- [PAIRADISE](https://github.com/Xinglab/PAIRADISE) (optional)
Expand Down
2 changes: 1 addition & 1 deletion bamtools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ set( LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/lib" )

# define compiler flags for all code
set( CMAKE_BUILD_TYPE Release )
add_definitions( -Wall -D_FILE_OFFSET_BITS=64 )
add_definitions( -Wall -D_FILE_OFFSET_BITS=64 -std=c++03)

# -----------------------------------------------
# handle platform-/environment-specific defines
Expand Down

0 comments on commit 067188a

Please sign in to comment.