Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
RF24
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
RF24
Commits
a296ce68
Commit
a296ce68
authored
Apr 22, 2016
by
mz-fuzzy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure - fix of wrong soname to respect major library version
.gitignore update
parent
eaf989d3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
.gitignore
.gitignore
+7
-0
configure
configure
+2
-2
No files found.
.gitignore
View file @
a296ce68
...
...
@@ -13,5 +13,12 @@ out_native/
version.h
Session.vim
*.so
*.so.*
*.dylib
*.dylib.*
.DS_Store
Makefile.inc
utility/includes.h
examples_linux/*
!examples_linux/**/
!examples_linux/*.*
configure
View file @
a296ce68
...
...
@@ -398,11 +398,11 @@ fi
case
${
OS
}
in
LINUX
)
DYN_SUFFIX
=
so
SHARED_LINKER_FLAGS+
=
" -shared -Wl,-soname,lib
${
LIB
}
.
${
DYN_SUFFIX
}
"
SHARED_LINKER_FLAGS+
=
" -shared -Wl,-soname,lib
${
LIB
}
.
${
DYN_SUFFIX
}
.
${
LIB_VERSION
%%.*
}
"
;;
DARWIN
)
DYN_SUFFIX
=
dylib
SHARED_LINKER_FLAGS+
=
" -dynamiclib -install_name
${
LIB_DIR
}
/lib
${
LIB
}
.
${
DYN_SUFFIX
}
"
SHARED_LINKER_FLAGS+
=
" -dynamiclib -install_name
${
LIB_DIR
}
/lib
${
LIB
}
.
${
DYN_SUFFIX
}
.
${
LIB_VERSION
%%.*
}
"
;;
*
)
die
"Unsupported OS:
${
OS
}
."
3
...
...
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