2016-01-06 04:20:25 +01:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2019-05-28 02:05:07 +02:00
|
|
|
DEFS += \
|
|
|
|
-DIRCD_UNIT \
|
|
|
|
###
|
|
|
|
|
2017-09-30 07:59:11 +02:00
|
|
|
AM_CXXFLAGS = \
|
2018-12-24 01:56:28 +01:00
|
|
|
-ftls-model=initial-exec \
|
2018-11-29 21:39:33 +01:00
|
|
|
@EXTRA_CXXFLAGS@ \
|
2017-09-30 07:59:11 +02:00
|
|
|
###
|
|
|
|
|
2019-05-26 07:35:54 +02:00
|
|
|
if DEBUG
|
|
|
|
if GCC
|
|
|
|
AM_CXXFLAGS += -fmax-errors=2
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-07-20 20:55:46 +02:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/include \
|
2016-09-24 06:01:57 +02:00
|
|
|
@ROCKSDB_CPPFLAGS@ \
|
2016-10-11 06:28:16 +02:00
|
|
|
@JS_CPPFLAGS@ \
|
2016-08-15 04:44:16 +02:00
|
|
|
@BOOST_CPPFLAGS@ \
|
2018-09-03 12:02:35 +02:00
|
|
|
@SSL_CPPFLAGS@ \
|
|
|
|
@CRYPTO_CPPFLAGS@ \
|
2017-10-01 04:14:45 +02:00
|
|
|
@SODIUM_CPPFLAGS@ \
|
2018-02-18 04:48:36 +01:00
|
|
|
@MAGIC_CPPFLAGS@ \
|
2018-06-04 23:48:04 +02:00
|
|
|
@SNAPPY_CPPFLAGS@ \
|
2018-06-04 23:43:20 +02:00
|
|
|
@LZ4_CPPFLAGS@ \
|
2018-06-03 17:29:20 +02:00
|
|
|
@Z_CPPFLAGS@ \
|
2019-07-03 23:31:05 +02:00
|
|
|
@MALLOC_CPPFLAGS@ \
|
2018-06-16 00:13:18 +02:00
|
|
|
-include ircd/ircd.pic.h \
|
2018-11-29 21:39:33 +01:00
|
|
|
@EXTRA_CPPFLAGS@ \
|
2017-09-08 11:43:23 +02:00
|
|
|
###
|
2016-07-20 20:55:46 +02:00
|
|
|
|
|
|
|
AM_LDFLAGS = \
|
2018-01-20 22:56:53 +01:00
|
|
|
-version-info 3:1:0 \
|
2018-12-21 23:38:14 +01:00
|
|
|
-Wl,--warn-common \
|
|
|
|
-Wl,--warn-execstack \
|
2018-05-31 22:00:58 +02:00
|
|
|
-Wl,--detect-odr-violations \
|
2019-02-09 03:24:20 +01:00
|
|
|
-Wl,--unresolved-symbols=report-all \
|
|
|
|
-Wl,--no-undefined-version \
|
2019-05-02 23:23:13 +02:00
|
|
|
-Wl,--weak-unresolved-symbols \
|
2018-03-24 10:52:40 +01:00
|
|
|
-Wl,--icf=all \
|
2018-05-31 22:00:58 +02:00
|
|
|
-Wl,--rosegment \
|
2019-05-17 09:44:00 +02:00
|
|
|
-Wl,--gdb-index \
|
2019-06-06 03:22:28 +02:00
|
|
|
-Wl,-z,lazy \
|
|
|
|
-Wl,-z,nodelete \
|
|
|
|
-Wl,-z,nodlopen \
|
|
|
|
-Wl,-z,noexecstack \
|
|
|
|
-Wl,-z,combreloc \
|
|
|
|
-Wl,-z,text-unlikely-segment \
|
2019-05-27 08:32:55 +02:00
|
|
|
$(PLATFORM_LDFLAGS) \
|
2018-11-29 21:39:33 +01:00
|
|
|
@EXTRA_LDFLAGS@ \
|
2017-09-08 11:43:23 +02:00
|
|
|
###
|
2016-07-20 20:55:46 +02:00
|
|
|
|
2019-06-24 09:05:52 +02:00
|
|
|
if GCC
|
|
|
|
AM_LDFLAGS += \
|
|
|
|
-Wl,-fuse-ld=gold \
|
|
|
|
###
|
|
|
|
endif
|
|
|
|
|
|
|
|
if CLANG
|
|
|
|
AM_LDFLAGS += \
|
|
|
|
-fuse-ld=gold \
|
|
|
|
###
|
|
|
|
endif
|
|
|
|
|
2019-05-26 07:35:54 +02:00
|
|
|
if MINGW
|
|
|
|
AM_LDFLAGS += \
|
|
|
|
-Wl,--enable-runtime-pseudo-reloc \
|
|
|
|
-export-symbols-regex '*' \
|
|
|
|
###
|
|
|
|
endif
|
|
|
|
|
2019-05-06 22:18:03 +02:00
|
|
|
libircddir = @libdir@
|
2016-07-20 20:55:46 +02:00
|
|
|
libircd_LTLIBRARIES = libircd.la
|
|
|
|
|
2017-08-23 23:39:41 +02:00
|
|
|
libircd_la_LDFLAGS = \
|
|
|
|
$(AM_LDFLAGS) \
|
|
|
|
@ROCKSDB_LDFLAGS@ \
|
|
|
|
@JS_LDFLAGS@ \
|
2017-09-08 11:43:23 +02:00
|
|
|
@BOOST_LDFLAGS@ \
|
2018-09-03 12:02:35 +02:00
|
|
|
@SSL_LDFLAGS@ \
|
|
|
|
@CRYPTO_LDFLAGS@ \
|
2017-10-01 04:14:45 +02:00
|
|
|
@SODIUM_LDFLAGS@ \
|
2018-02-18 04:48:36 +01:00
|
|
|
@MAGIC_LDFLAGS@ \
|
2018-06-04 23:48:04 +02:00
|
|
|
@SNAPPY_LDFLAGS@ \
|
2018-06-04 23:43:20 +02:00
|
|
|
@LZ4_LDFLAGS@ \
|
2018-06-03 17:29:20 +02:00
|
|
|
@Z_LDFLAGS@ \
|
2019-07-03 23:31:05 +02:00
|
|
|
@MALLOC_LDFLAGS@ \
|
2017-09-08 11:43:23 +02:00
|
|
|
###
|
2017-08-23 23:39:41 +02:00
|
|
|
|
|
|
|
libircd_la_LIBADD = \
|
|
|
|
@ROCKSDB_LIBS@ \
|
|
|
|
@JS_LIBS@ \
|
|
|
|
@BOOST_LIBS@ \
|
2018-09-03 12:02:35 +02:00
|
|
|
@SSL_LIBS@ \
|
|
|
|
@CRYPTO_LIBS@ \
|
2017-10-01 04:14:45 +02:00
|
|
|
@SODIUM_LIBS@ \
|
2018-02-18 04:48:36 +01:00
|
|
|
@MAGIC_LIBS@ \
|
2018-06-04 23:48:04 +02:00
|
|
|
@SNAPPY_LIBS@ \
|
2018-06-04 23:43:20 +02:00
|
|
|
@LZ4_LIBS@ \
|
2018-06-03 17:29:20 +02:00
|
|
|
@Z_LIBS@ \
|
2019-07-03 23:31:05 +02:00
|
|
|
@MALLOC_LIBS@ \
|
2018-11-29 21:39:33 +01:00
|
|
|
@EXTRA_LIBS@ \
|
2017-09-08 11:43:23 +02:00
|
|
|
###
|
2017-08-23 23:39:41 +02:00
|
|
|
|
2018-02-11 20:51:46 +01:00
|
|
|
# Since this is a GNU C++ project we assume the non-standard respect for
|
|
|
|
# the order of this sources list. Static initialization will occur in
|
|
|
|
# the same order as this list, and destruction in the reverse order.
|
|
|
|
#
|
|
|
|
# Add the most dependent units at the end and the least dependent units
|
|
|
|
# at the beginning.
|
|
|
|
#
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES =#
|
|
|
|
libircd_la_SOURCES += assert.cc
|
|
|
|
libircd_la_SOURCES += info.cc
|
|
|
|
libircd_la_SOURCES += allocator.cc
|
2019-07-04 02:27:58 +02:00
|
|
|
libircd_la_SOURCES += allocator_gnu.cc
|
2019-07-04 03:35:50 +02:00
|
|
|
libircd_la_SOURCES += allocator_je.cc
|
2019-07-03 23:45:23 +02:00
|
|
|
libircd_la_SOURCES += vg.cc
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES += exception.cc
|
|
|
|
libircd_la_SOURCES += util.cc
|
|
|
|
libircd_la_SOURCES += demangle.cc
|
|
|
|
libircd_la_SOURCES += locale.cc
|
2019-07-15 18:47:34 +02:00
|
|
|
libircd_la_SOURCES += timedate.cc
|
2019-06-05 11:10:29 +02:00
|
|
|
libircd_la_SOURCES += lex_cast.cc
|
2019-06-05 11:09:42 +02:00
|
|
|
libircd_la_SOURCES += stringops.cc
|
2019-07-11 22:46:32 +02:00
|
|
|
libircd_la_SOURCES += globular.cc
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES += tokens.cc
|
|
|
|
libircd_la_SOURCES += parse.cc
|
|
|
|
libircd_la_SOURCES += rand.cc
|
|
|
|
libircd_la_SOURCES += base.cc
|
|
|
|
libircd_la_SOURCES += crh.cc
|
|
|
|
libircd_la_SOURCES += fmt.cc
|
|
|
|
libircd_la_SOURCES += json.cc
|
|
|
|
libircd_la_SOURCES += conf.cc
|
2019-07-11 22:11:12 +02:00
|
|
|
libircd_la_SOURCES += stats.cc
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES += logger.cc
|
|
|
|
libircd_la_SOURCES += magic.cc
|
|
|
|
libircd_la_SOURCES += sodium.cc
|
|
|
|
libircd_la_SOURCES += openssl.cc
|
|
|
|
libircd_la_SOURCES += rfc1459.cc
|
|
|
|
libircd_la_SOURCES += rfc3986.cc
|
|
|
|
libircd_la_SOURCES += rfc1035.cc
|
|
|
|
libircd_la_SOURCES += http.cc
|
2019-06-22 01:54:22 +02:00
|
|
|
libircd_la_SOURCES += http2.cc
|
2019-05-01 23:40:39 +02:00
|
|
|
libircd_la_SOURCES += prof.cc
|
|
|
|
libircd_la_SOURCES += fs.cc
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES += ios.cc
|
|
|
|
libircd_la_SOURCES += ctx.cc
|
2019-07-11 23:07:12 +02:00
|
|
|
libircd_la_SOURCES += ctx_ole.cc
|
2019-05-01 23:40:39 +02:00
|
|
|
if AIO
|
|
|
|
libircd_la_SOURCES += fs_aio.cc
|
|
|
|
endif
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES += mods.cc
|
2019-05-28 12:47:02 +02:00
|
|
|
if LINUX
|
2019-05-28 23:50:55 +02:00
|
|
|
libircd_la_SOURCES += mods_ldso.cc
|
2019-05-28 12:47:02 +02:00
|
|
|
endif
|
2019-06-11 22:32:41 +02:00
|
|
|
libircd_la_SOURCES += db_write_thread.cc
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES += db_port.cc
|
|
|
|
libircd_la_SOURCES += db_env.cc
|
|
|
|
libircd_la_SOURCES += db.cc
|
|
|
|
libircd_la_SOURCES += net.cc
|
|
|
|
libircd_la_SOURCES += server.cc
|
|
|
|
libircd_la_SOURCES += client.cc
|
|
|
|
libircd_la_SOURCES += resource.cc
|
2016-11-29 16:23:38 +01:00
|
|
|
if JS
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES += js.cc
|
2016-11-29 16:23:38 +01:00
|
|
|
endif
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES += m_name.cc
|
|
|
|
libircd_la_SOURCES += m_id.cc
|
|
|
|
libircd_la_SOURCES += m_dbs.cc
|
|
|
|
libircd_la_SOURCES += m_room.cc
|
2019-07-12 05:27:59 +02:00
|
|
|
libircd_la_SOURCES += m_fed.cc
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES += m.cc
|
2019-05-04 00:34:56 +02:00
|
|
|
libircd_la_SOURCES += m_event.cc
|
2019-05-01 01:46:34 +02:00
|
|
|
libircd_la_SOURCES += ircd.cc
|
2019-03-23 00:29:04 +01:00
|
|
|
|
2019-06-11 22:32:41 +02:00
|
|
|
db_write_thread.lo: AM_CPPFLAGS += -I$(top_srcdir)/deps/rocksdb/include
|
|
|
|
db_write_thread.lo: AM_CPPFLAGS += -I$(top_srcdir)/deps/rocksdb
|
|
|
|
|
2019-05-17 04:30:55 +02:00
|
|
|
# Units containing a spirit grammar have some special needs to mitigate
|
|
|
|
# larger-than-normal compile time, compile memory, and output objects.
|
|
|
|
# A composite of CXXFLAGS is used specifically on units with grammars.
|
|
|
|
GUNIT_CXXFLAGS = ###
|
|
|
|
|
|
|
|
# Grammar templates can generate a huge number of individual debug symbols
|
|
|
|
# for each template instantiation deep within spirit; we try to reduce...
|
|
|
|
GUNIT_CXXFLAGS += -fno-var-tracking
|
2019-06-23 09:29:43 +02:00
|
|
|
if GCC
|
2019-05-17 04:30:55 +02:00
|
|
|
GUNIT_CXXFLAGS += -fno-var-tracking-assignments
|
|
|
|
GUNIT_CXXFLAGS += -femit-struct-debug-baseonly
|
2019-06-23 09:29:43 +02:00
|
|
|
endif
|
2019-05-17 04:30:55 +02:00
|
|
|
|
2019-03-23 00:29:04 +01:00
|
|
|
# The recursive grammars can consume a large amount of RAM when compiling
|
|
|
|
# (>= 2 GiB) which can thrash small systems and even sometimes crash GCC.
|
|
|
|
# This option reduces memory consumption at the cost of compilation speed.
|
|
|
|
if GCC
|
2019-03-23 01:46:21 +01:00
|
|
|
if LOWMEM_COMPILE
|
2019-05-17 04:30:55 +02:00
|
|
|
GUNIT_CXXFLAGS += --param ggc-min-expand=1
|
2019-03-23 01:46:21 +01:00
|
|
|
endif
|
2019-03-23 00:29:04 +01:00
|
|
|
endif
|
2019-04-21 00:41:11 +02:00
|
|
|
|
2019-05-06 19:43:33 +02:00
|
|
|
parse.lo: AM_CPPFLAGS := -include ircd/spirit.h ${AM_CPPFLAGS}
|
2019-05-17 04:30:55 +02:00
|
|
|
parse.lo: CXXFLAGS += ${GUNIT_CXXFLAGS}
|
2019-05-06 19:43:33 +02:00
|
|
|
|
2019-04-21 00:41:11 +02:00
|
|
|
json.lo: AM_CPPFLAGS := -include ircd/spirit.h ${AM_CPPFLAGS}
|
2019-05-17 04:30:55 +02:00
|
|
|
json.lo: CXXFLAGS += ${GUNIT_CXXFLAGS}
|
2019-04-21 00:41:11 +02:00
|
|
|
|
|
|
|
http.lo: AM_CPPFLAGS := -include ircd/spirit.h ${AM_CPPFLAGS}
|
2019-05-17 04:30:55 +02:00
|
|
|
http.lo: CXXFLAGS += ${GUNIT_CXXFLAGS}
|
2019-04-21 00:41:11 +02:00
|
|
|
|
|
|
|
fmt.lo: AM_CPPFLAGS := -include ircd/spirit.h ${AM_CPPFLAGS}
|
2019-05-17 04:30:55 +02:00
|
|
|
fmt.lo: CXXFLAGS += ${GUNIT_CXXFLAGS}
|
2019-04-21 00:41:11 +02:00
|
|
|
|
|
|
|
rfc3986.lo: AM_CPPFLAGS := -include ircd/spirit.h ${AM_CPPFLAGS}
|
2019-05-17 04:30:55 +02:00
|
|
|
rfc3986.lo: CXXFLAGS += ${GUNIT_CXXFLAGS}
|
2019-04-21 00:41:11 +02:00
|
|
|
|
|
|
|
rfc1459.lo: AM_CPPFLAGS := -include ircd/spirit.h ${AM_CPPFLAGS}
|
2019-05-17 04:30:55 +02:00
|
|
|
rfc1459.lo: CXXFLAGS += ${GUNIT_CXXFLAGS}
|
2019-04-21 00:41:11 +02:00
|
|
|
|
|
|
|
m_id.lo: AM_CPPFLAGS := -include ircd/spirit.h ${AM_CPPFLAGS}
|
2019-05-17 04:30:55 +02:00
|
|
|
m_id.lo: CXXFLAGS += ${GUNIT_CXXFLAGS}
|