Skip to content

Commit

Permalink
removed -lc
Browse files Browse the repository at this point in the history
  • Loading branch information
lostjared committed Sep 19, 2024
1 parent 06201f2 commit 76b6b99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/ETL/etl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ while [[ "$#" -gt 0 ]]; do
shift
done

cc -O3 "${temp_o_files[@]}" -o "$output_executable" -letl -lc "${linker_flags[@]}"
cc -O3 "${temp_o_files[@]}" -o "$output_executable" -letl "${linker_flags[@]}"
if [ $? -ne 0 ]; then
echo "Linking failed"
exit 1
Expand Down

0 comments on commit 76b6b99

Please sign in to comment.