Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
matrix-org
Olm
Commits
11861404
Commit
11861404
authored
Jun 15, 2015
by
Mark Haines
Browse files
script for building a shared library
parent
4abead9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
build_shared_library.py
0 → 100755
View file @
11861404
#! /usr/bin/python
# Copyright 2015 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
subprocess
import
glob
import
os
if
not
os
.
path
.
exists
(
"build"
):
os
.
mkdir
(
"build"
)
source_files
=
glob
.
glob
(
"src/*.cpp"
)
compile_args
=
"g++ -O3 -Iinclude -Ilib --std=c++11 --shared -fPIC"
.
split
()
compile_args
+=
source_files
library
=
"build/libaxolotl.so"
def
run
(
args
):
print
" "
.
join
(
args
)
subprocess
.
check_call
(
args
)
run
(
compile_args
+
[
"-o"
,
library
])
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