Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
798ff87b
Commit
798ff87b
authored
Sep 04, 2013
by
Kenton Varda
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #31 from amluto/master
Fix LDFLAGS and work around a Fedora bug that broke pthread linking
parents
7739b539
c4e6bac6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
Makefile.am
c++/Makefile.am
+9
-6
No files found.
c++/Makefile.am
View file @
798ff87b
...
...
@@ -154,8 +154,9 @@ includecapnp_HEADERS = \
lib_LTLIBRARIES
=
libkj.la libcapnp.la libcapnpc.la
libkj_la_LIBADD
=
$(PTHREAD_LIBS)
libkj_la_LDFLAGS
=
-release
$(VERSION)
-export-dynamic
-no-undefined
# -lpthread is here to work around https://bugzilla.redhat.com/show_bug.cgi?id=661333
libkj_la_LIBADD
=
$(PTHREAD_LIBS)
-lpthread
libkj_la_LDFLAGS
=
-release
$(VERSION)
-Wl
,--no-undefined
libkj_la_SOURCES
=
\
src/kj/common.c++
\
src/kj/units.c++
\
...
...
@@ -172,8 +173,9 @@ libkj_la_SOURCES= \
src/kj/main.c++
\
src/kj/parse/char.c++
libcapnp_la_LIBADD
=
libkj.la
$(PTHREAD_LIBS)
libcapnp_la_LDFLAGS
=
-release
$(VERSION)
-export-dynamic
-no-undefined
# -lpthread is here to work around https://bugzilla.redhat.com/show_bug.cgi?id=661333
libcapnp_la_LIBADD
=
libkj.la
$(PTHREAD_LIBS)
-lpthread
libcapnp_la_LDFLAGS
=
-release
$(VERSION)
-Wl
,--no-undefined
libcapnp_la_SOURCES
=
\
src/capnp/c++.capnp.c++
\
src/capnp/blob.c++
\
...
...
@@ -190,8 +192,9 @@ libcapnp_la_SOURCES= \
src/capnp/serialize.c++
\
src/capnp/serialize-packed.c++
libcapnpc_la_LIBADD
=
libcapnp.la libkj.la
$(PTHREAD_LIBS)
libcapnpc_la_LDFLAGS
=
-release
$(VERSION)
-export-dynamic
-no-undefined
# -lpthread is here to work around https://bugzilla.redhat.com/show_bug.cgi?id=661333
libcapnpc_la_LIBADD
=
libcapnp.la libkj.la
$(PTHREAD_LIBS)
-lpthread
libcapnpc_la_LDFLAGS
=
-release
$(VERSION)
-Wl
,--no-undefined
libcapnpc_la_SOURCES
=
\
src/capnp/compiler/md5.h
\
src/capnp/compiler/md5.c++
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment