这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
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
1 change: 1 addition & 0 deletions dist/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
out
16 changes: 16 additions & 0 deletions dist/linux-x64.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/sh

cd .. && ninja -C out/Release thrust_shell -t clean && cd dist/
cd .. && ninja -C out/Release thrust_shell -j 4 && cd dist/
mkdir -p out && cd out
rm -rf thrust-v0.7.0-linux-x64
mkdir -p thrust-v0.7.0-linux-x64 && cd thrust-v0.7.0-linux-x64
cp ../../../out/Release/thrust_shell .
cp ../../../out/Release/*.pak .
cp ../../../out/Release/*.so .
cp ../../../out/Release/*.dat .
cd ..
tar -pczf thrust-v0.7.0-linux-x64.tar.gz thrust-v0.7.0-linux-x64
cd ..