reverie/tests/c_tests/cc_no_shlib.sh
facebook-github-bot 15d2f61411 Initial commit
fbshipit-source-id: c440d991296c92bdc5e109a11d269049e8840e94
2021-12-29 16:14:27 -08:00

29 lines
621 B
Bash
Executable file

#!/bin/bash
# Copyright (c) Facebook, Inc. and its affiliates.
#
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# fbmake will pass --install-dir and --fbcode--dir while
# buck won't pass it. So drop all arguments except for the last two
while [[ $# -gt 1 ]]; do
shift;
done
src=$1
shift
path=$INSTALL_DIR
[[ ! -d $path ]] && mkdir -p "$path";
output_file=$(basename "$src")
output=$INSTALL_DIR/${output_file%.*}
echo "compiling $output from $src"
cc=clang.par
${cc} -nostdlib -o "$output" "$src" "$*"