1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

perf: use optimization options for Rust and gcc

This commit is contained in:
Divlo
2022-09-24 22:17:07 +02:00
parent 5e5a248238
commit df539a41c0
6 changed files with 8 additions and 8 deletions

View File

@ -2,6 +2,6 @@ FROM gcc:12.2.0
WORKDIR /usr/app
COPY ./ /usr/app
RUN g++ ./*.cpp* -o solution.exe -Wall -Wextra -Wfloat-equal -Wundef -Werror -std=c++17 -pedantic -pedantic-errors
RUN g++ ./*.cpp* -o solution.exe -Wall -Wextra -Wfloat-equal -Wundef -Werror -std=c++17 -pedantic -pedantic-errors -O3
CMD ["./solution.exe"]