Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ __pycache__/
arm_test/
buck-out/
buck2-bin/
build/
# build/
cmake-android-out/
cmake-ios-out/
cmake-out*
Expand Down
12 changes: 12 additions & 0 deletions build/build_android_library.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and 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.

set -eu

current_file=$(basename "$0")
echo -e "\033[31m[error] $0 has moved to:\033[0m scripts/${current_file}"
exit 1
12 changes: 12 additions & 0 deletions build/build_apple_frameworks.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and 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.

set -eu

current_file=$(basename "$0")
echo -e "\033[31m[error] $0 has moved to:\033[0m scripts/${current_file}"
exit 1
12 changes: 12 additions & 0 deletions build/build_apple_llm_demo.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and 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.

set -eu

current_file=$(basename "$0")
echo -e "\033[31m[error] $0 has moved to:\033[0m scripts/${current_file}"
exit 1
12 changes: 12 additions & 0 deletions build/create_frameworks.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and 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.

set -eu

current_file=$(basename "$0")
echo -e "\033[31m[error] $0 has moved to:\033[0m scripts/${current_file}"
exit 1
13 changes: 13 additions & 0 deletions build/print_exported_headers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env python3
# Copyright (c) Meta Platforms, Inc. and 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.

import os
import sys

current_file=os.path.basename(__file__)
print(f"\033[31m[error] build/{current_file} has moved to:\033[0m scripts/{current_file}")
sys.exit(1)
12 changes: 12 additions & 0 deletions build/run_android_emulator.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and 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.

set -eu

current_file=$(basename "$0")
echo -e "\033[31m[error] $0 has moved to:\033[0m scripts/${current_file}"
exit 1
12 changes: 12 additions & 0 deletions build/test_ios.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and 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.

set -eu

current_file=$(basename "$0")
echo -e "\033[31m[error] $0 has moved to:\033[0m scripts/${current_file}"
exit 1
Loading