_cos and _sin are underscored, and as such were never really "included" with Swift. They are vestigial implementation hooks that we can't really remove. The expectation is really that you get cos and sin either from the platform libc (as you show) or from Numerics, like the rest of the C math library.
However, it is somewhat troubling that LLVM is generating a call to a function that doesn't exist (or isn't linked) in your environment. If you have just a call to _cos (no matching _sin, and no Glibc import), does the linker find cos successfully?
SVG.Point.swift:3552: error: undefined reference to 'cos'
by the way, the file SVG.Point.swift is less than 60 lines long, i do not know why the compiler is referencing a source location with a line number in the thousands.
preamble, compilation succeeds, even though i did not change the name of the function being called from _cos to cos.
if i remove the preamble, compilation will continue to succeed until i delete the .build directory. (to me, this was the strangest part of this issue.)
OK, that's enough to tell us that this is just garden variety libm-not-being-linked-by-default-on-Linux, rather than LLVM doing something sneaky with sincos formation. If you use Numerics or the Glibc module, then libm will be linked for you. If you want to avoid using them, you'll have to ensure that it gets linked into your binary.
The best solution would be to use one of the modules that actually provides the feature, but if you really can't for some reason, then linking it manually ought to suffice.