Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
update
  • Loading branch information
MrFrenik committed Aug 7, 2020
1 parent 3f4d033 commit dbf8c2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion proc/linux/compile_linux_gcc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ src=(
)

# Build library
gcc -c -O0 ${flags[*]} ${inc[*]} ${src[*]} ${libs[*]}
gcc -c -O3 ${flags[*]} ${inc[*]} ${src[*]} ${libs[*]}
ar -rcs lib${proj_name}.a *o
ranlib lib${proj_name}.a
rm *.o
Expand Down
2 changes: 1 addition & 1 deletion proc/osx/compile_osx_gcc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ src=(
)

# Build library
gcc -c -O0 ${flags[*]} ${inc[*]} ${src[*]} ${libs[*]}
gcc -c -O3 ${flags[*]} ${inc[*]} ${src[*]} ${libs[*]}
ar -rvs lib${proj_name}.a *o
ranlib lib${proj_name}.a
rm *.o
Expand Down

0 comments on commit dbf8c2d

Please sign in to comment.