mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
Experimenting with -rdynamic - not sure this is final
This commit is contained in:
parent
a63fb1b1c7
commit
a6f42b2869
1 changed files with 4 additions and 4 deletions
|
@ -5,9 +5,9 @@
|
|||
# Configuration options for the makefile
|
||||
|
||||
# Compiler options
|
||||
CFLAGS ?= -O2 -fPIC -Wall -Iinclude -L.
|
||||
LIB_CFLAGS ?= -O2 -Wall -Iinclude -L.
|
||||
COMP_CFLAGS ?= -O2 -fPIC -Wall -I$(PREFIX)/include -L$(PREFIX)/lib
|
||||
CFLAGS ?= -g -fPIC -rdynamic -Wall -Iinclude -L.
|
||||
LIB_CFLAGS ?= -g -rdynamic -Wall -Iinclude -L.
|
||||
COMP_CFLAGS ?= -g -fPIC -rdynamic -Wall -I$(PREFIX)/include -L$(PREFIX)/lib
|
||||
# Use these lines instead for debugging or profiling
|
||||
#CFLAGS = -g -Wall
|
||||
#CFLAGS = -g -pg -Wall
|
||||
|
@ -18,7 +18,7 @@ LIBS = -pthread -lcyclone -lck -lm -ltommath -ldl
|
|||
CC_PROG ?= "$(CC) ~src-file~ $(COMP_CFLAGS) -c -o ~exec-file~.o"
|
||||
CC_EXEC ?= "$(CC) ~exec-file~.o ~obj-files~ $(LIBS) $(COMP_CFLAGS) -o ~exec-file~"
|
||||
CC_LIB ?= "$(CC) ~src-file~ $(COMP_CFLAGS) -c -o ~exec-file~.o"
|
||||
CC_SO ?= "$(CC) -shared -o ~exec-file~.so ~exec-file~.o"
|
||||
CC_SO ?= "$(CC) -shared -rdynamic -o ~exec-file~.so ~exec-file~.o"
|
||||
|
||||
AR ?= ar
|
||||
#CD ?= cd
|
||||
|
|
Loading…
Add table
Reference in a new issue