Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pd-lua
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonathan Wilkes
pd-lua
Commits
b407dbed
Commit
b407dbed
authored
10 years ago
by
IOhannes m zmölnig
Browse files
Options
Downloads
Patches
Plain Diff
Added "-fPIC" to build-flags (Closes: #759830)
since we override CFLAGS completely, we also need to pass "-fPIC"
parent
4fa945db
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
debian/rules
+6
-2
6 additions, 2 deletions
debian/rules
with
6 additions
and
2 deletions
debian/rules
+
6
−
2
View file @
b407dbed
...
...
@@ -23,8 +23,12 @@ include /usr/share/cdbs/1/rules/utils.mk
DEB_SRCDIR
=
src
CFLAGS
+=
$(
CPPFLAGS
)
$(
shell pkg-config
--cflags
lua5.2 pd
)
-Wno-error
=
format-security
LIBS
+=
$(
shell pkg-config
--libs
lua5.2
)
$(
LDFLAGS
)
CFLAGS
+=
$(
CPPFLAGS
)
\
$(
shell pkg-config
--cflags
lua5.2 pd
)
\
-fPIC
\
-Wno-error
=
format-security
LIBS
+=
$(
shell pkg-config
--libs
lua5.2
)
\
$(
LDFLAGS
)
DEB_MAKE_EXTRA_ARGS
=
CFLAGS
=
"
$(
CFLAGS
)
"
LIBS
=
"
$(
LIBS
)
"
$(
DEB_MAKE_PARALLEL
)
test
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment