I'm linking to a couple dozens libraries with cgo.
Can I do something like:
// #cgo LDFLAGS: -L${SRCDIR}/lib \
// -lmylib1 \
// -lmylib2 \
// ...
Or maybe
// #cgo LDFLAGS: -L${SRCDIR}/lib
// #cgo LDFLAGS += -lmylib1
// #cgo LDFLAGS += -lmylib2
// ...
So is there something along those lines? Because it would be very ugly and hard to read to have all of my linking flags at one line.