I am implementing the algorithm in this paper. However, I have run into a problem with my solver for the linear program. I need to solve a linear program where I minimise the $1$-norm of a vector subject to the constraint that the vector, when multiplied by some matrix equals a known set of measurements, i.e.,
$$ \min \lVert x \rVert_{1} \text{ s.t. } A x = y. $$
The difficulty I'm facing is that $A$ is not necessarily a square matrix and, thus, solvers like $\ell_1$-magic using the primal dual algorithm won't work. Can anyone please suggest an algorithm/solver that will solve this type of convex optimisation problem?