Skip to content

Commit

Permalink
Remove atomic
Browse files Browse the repository at this point in the history
  • Loading branch information
zpl-zak committed Jan 16, 2021
1 parent 0c5029d commit b192c0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ ifeq ($(OS),Windows_NT)
else
OSDEF := $(shell uname -s)
ifeq ($(OSDEF),Linux)
LDFLAGS += -pthread -lm -latomic
LDFLAGS += -pthread -lm
endif
ifeq ($(OSDEF),OpenBSD)
STDC=-std=c11
CC=clang
CXX=clang++
LDFLAGS += -pthread -lm -latomic
LDFLAGS += -pthread -lm
endif
ifeq ($(OSDEF),FreeBSD)
STDC=-std=c11
CC=clang
CXX=clang++
LDFLAGS+=-pthread -lm -latomic
LDFLAGS+=-pthread -lm
endif
endif

Expand Down

0 comments on commit b192c0c

Please sign in to comment.