Skip to content

Commit

Permalink
Update deprecation flags
Browse files Browse the repository at this point in the history
  • Loading branch information
pjreiniger committed Aug 29, 2023
1 parent 598ec9b commit ee75a2e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,21 +1,34 @@
try-import user.bazelrc

# build --javacopt=-Werror
# build --javacopt=-Xlint:all

# Windows
build:windows --copt=/W3
build:windows --copt=/WX
build:windows --copt=/std:c++20
build:windows --copt=/Zc:preprocessor
build:windows --copt=/wd5105

# Windows Arm
build:windows_arm --copt=/W3
build:windows_arm --copt=/WX
build:windows_arm --copt=/std:c++20
build:windows_arm --copt=/Zc:preprocessor
build:windows_arm --copt=/wd5105
build:windows_arm --cpu=x64_arm64_windows

# Linux
build:linux --copt=-Wall
build:linux --copt=-Wextra
build:linux --copt=-Werror
build:linux --copt=-std=c++20
build:linux --linkopt=-pthread

# MacOS
build:macos --copt=-Wall
build:macos --copt=-Wextra
build:macos --copt=-Werror
build:macos --copt=-std=c++20

# Roborio
Expand Down

0 comments on commit ee75a2e

Please sign in to comment.