Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Set the compiler, if it's not set by the environment.
ifndef GXX
GXX = g++-9
GXX = g++-10
endif

ifndef CC
CC = gcc-9
CC = gcc-10
endif

GIT_REVISION = $(shell git rev-parse --short HEAD)
Expand Down
2 changes: 1 addition & 1 deletion libstuff/libstuff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#endif

// Common error definitions
#define S_errno errno
#define S_errno (unsigned int) errno
#define S_NOTINITIALISED 0xFEFEFEFE // Doesn't exist for Linux
#ifdef __APPLE__
// The above doesn't even build on OS X with C++11 turned on. I don't know why
Expand Down