使用Xcode运行.sh文件,我使用终端,一切正常,不知道如何使用xcode

时间:2017-08-11 02:40:01

标签: c xcode compilation

我真的需要在Xcode中使用调试器,但我无法完成这项工作。我在Mac上使用终端来编译一个文件,我通常只是更改目录,然后我有.sh文件,我写下来并编译所有内容,请注意这是.sh文件中的内容:

#!/bin/bash
clear

echo "cleaning directory"
rm mag_test.out

echo "Compiling mag_cal_driver.c"
g++ -o mag_test.out mag_cal_driver.c ../src/mag_utils.c

echo -e "Running magnetometer tests\n"
./mag_test.out

我怎样才能在Xcode中实现这一点?注意代码是在c! enter image description here

enter image description here

0 个答案:

没有答案