Skip to content
Snippets Groups Projects
Commit cdab8a02 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Fixed URCU compiler error (C99 doesn't define asm keyword).

parent 6d019ac3
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ SRC_FILES = $(shell find $(SRC_DIRS) -name "*.c" )
OBJS = $(addprefix $(OBJ_DIR), $(addsuffix .o, $(basename $(notdir $(SRC_FILES)))))
CC = gcc
CFLAGS += -Wall -std=c99 -D _XOPEN_SOURCE=600
CFLAGS += -Wall -std=gnu99 -D _XOPEN_SOURCE=600
LDFLAGS += -lpthread -lurcu -lldns
all:cutedns
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment