mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 16:57:35 +02:00
Issue #351 - Prevent warnings when compiling with clang
This commit is contained in:
parent
905bf9b330
commit
236c7e84f4
1 changed files with 2 additions and 2 deletions
|
@ -29,10 +29,10 @@ BASE_CFLAGS ?= $(CYC_PROFILING) $(CYC_GCC_OPT_FLAGS) -fPIC -Wall -Wno-shift-neg
|
||||||
BASE_PROG_CFLAGS ?= $(CYC_PROFILING) $(CYC_GCC_OPT_FLAGS) -Wall -I$(PREFIX)/include
|
BASE_PROG_CFLAGS ?= $(CYC_PROFILING) $(CYC_GCC_OPT_FLAGS) -Wall -I$(PREFIX)/include
|
||||||
ifeq ($(OS),Darwin)
|
ifeq ($(OS),Darwin)
|
||||||
COMP_CFLAGS ?= $(BASE_CFLAGS) -L$(PREFIX)/lib
|
COMP_CFLAGS ?= $(BASE_CFLAGS) -L$(PREFIX)/lib
|
||||||
COMP_PROG_CFLAGS ?= $(BASE_PROG_CFLAGS) -L$(PREFIX)/lib
|
COMP_PROG_CFLAGS ?= $(BASE_PROG_CFLAGS)
|
||||||
else
|
else
|
||||||
COMP_CFLAGS ?= $(BASE_CFLAGS) -L$(PREFIX)/lib
|
COMP_CFLAGS ?= $(BASE_CFLAGS) -L$(PREFIX)/lib
|
||||||
COMP_PROG_CFLAGS ?= $(BASE_PROG_CFLAGS) -L$(PREFIX)/lib
|
COMP_PROG_CFLAGS ?= $(BASE_PROG_CFLAGS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Use these lines instead for debugging or profiling
|
# Use these lines instead for debugging or profiling
|
||||||
|
|
Loading…
Add table
Reference in a new issue