This commit is contained in:
Daniel
2018-10-20 01:41:14 +02:00
parent c89b485eea
commit d847b8d625
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -27,8 +27,7 @@ jobs:
working_directory: /tmp/danio-gcc
machine: true
steps:
- attach_workspace:
at: /tmp/danio-gcc
- attach_workspace: /tmp/danio-gcc
- run: |
mkdir -pv out
find . -name "*.txz" -exec mv -fv {} out \;
+1 -1
View File
@@ -6,7 +6,7 @@ export OUT="`pwd`/out"
if [ "${1}" == "64" ]; then
export CC="cc -m64"
export CXX="c++ -m64"
elif [ "${1}" == "32" ]
elif [ "${1}" == "32" ]; then
export CC="cc -m32"
export CXX="c++ -m32"
else