Skip to content

Commit

Permalink
Overlooked flag in the Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikkempa committed Sep 26, 2020
1 parent 8c59a04 commit 52c5406
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aux/delete-sentinel-bytes/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SHELL = /bin/sh

CC = g++
CFLAGS = -Wall -Wextra -pedantic -Wshadow -funroll-loops -DNDEBUG -O3 -march=native
CFLAGS = -Wall -Wextra -pedantic -Wshadow -funroll-loops -DNDEBUG -O3 -march=native -std=c++0x

all: delete_sentinel_bytes

Expand All @@ -12,4 +12,4 @@ clean:
/bin/rm -f *.o

nuclear:
/bin/rm -f delete_sentinel_bytes *.o
/bin/rm -f delete_sentinel_bytes *.o

0 comments on commit 52c5406

Please sign in to comment.