Fix linux linking issues

This commit is contained in:
Richard Feldman 2020-10-04 09:13:54 -04:00
parent 841373edb2
commit 9405eeeb06

View file

@ -57,9 +57,9 @@ fn link_linux(
"-lrt", "-lrt",
"-lutil", "-lutil",
"-lc_nonshared", "-lc_nonshared",
// "-lc++", // TODO shouldn't we need this? "-lc++",
"-lunwind",
// "-lgcc", // TODO will eventually need compiler_rt from gcc or something - see https://github.com/rtfeldman/roc/pull/554#discussion_r496370840 // "-lgcc", // TODO will eventually need compiler_rt from gcc or something - see https://github.com/rtfeldman/roc/pull/554#discussion_r496370840
"-lunwind", // TODO will eventually need this, see https://github.com/rtfeldman/roc/pull/554#discussion_r496370840
]) ])
.spawn() .spawn()
} }