Skip to content

Commit

Permalink
Makefile for Raspberry/Debian
Browse files Browse the repository at this point in the history
added "-std=gnu99" to CFLAGS so that it compiles on Debian Jessie / Raspberry Pi
  • Loading branch information
domcross committed Aug 24, 2018
1 parent 3b7a739 commit 935862d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

CC := gcc
CXX := g++
CFLAGS += -Isrc -Wall
CFLAGS += -Isrc -Wall -std=gnu99
CXXFLAGS += -Isrc -std=c++0x -Wall -Wno-sign-compare \
-Wno-unused-local-typedefs -Winit-self -rdynamic \
-DHAVE_POSIX_MEMALIGN
Expand Down

0 comments on commit 935862d

Please sign in to comment.