Advertisement
den4ik2003

Untitled

Dec 6th, 2024
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. path_to_cmake_dir=$1
  4.  
  5. cmake $path_to_cmake_dir
  6. cmake --build $path_to_cmake_dir
  7.  
  8. cp test full_bin
  9. cp test cutted_bin
  10.  
  11. strip --strip-all cutted_bin
  12.  
  13. ulimit -c unlimited # для core-dump в дальнейшем
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement