aboutsummaryrefslogtreecommitdiff
path: root/soong/regen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'soong/regen.sh')
-rwxr-xr-xsoong/regen.sh37
1 files changed, 37 insertions, 0 deletions
diff --git a/soong/regen.sh b/soong/regen.sh
new file mode 100755
index 0000000..85f17fe
--- /dev/null
+++ b/soong/regen.sh
@@ -0,0 +1,37 @@
+#!/bin/bash -ex
+#
+# Copyright 2019 Google Inc. All rights reserved.
+#
+# 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.
+#
+# Regenerate host configuration files for the current host
+
+cd `dirname ${BASH_SOURCE[0]}`
+
+DIR=linux_glibc
+if [ `uname` == "Darwin" ]; then
+ DIR=darwin
+fi
+mkdir -p $DIR
+cd $DIR
+
+# Generate headers
+rm -rf tmp
+mkdir tmp
+cd tmp
+../../../configure
+make
+cd lib
+find . -name '*.h' | xargs -IX cp X ../../
+cd ../..
+rm -rf tmp