For Pi we use the aarch64 libs but remember that Linux PC's still have all the same basic content in their libs, and most of thos lib names are common
My Pi and other 64bit arm systems point to these library dirs.
/usr/lib
/usr/lib/aarch64-linux-gnu
/usr/local/lib
But a PC running debian will store its hardware libs in a different locations, not aarch libs
So I use these library paths for my i5 mini PC running debian
/usr/lib
/usr/lib/i386-linux-gnu
/usr/local/lib
So you still reference all the standard libs, installed by you or by linux but machine specific content is located in i386 in my case..(I can't 100% be sure your's won't be x64 or something)
Just find out what your bins are in your usr/lib dir and that will be the dir you send your systems to.
My Pi and other 64bit arm systems point to these library dirs.
/usr/lib
/usr/lib/aarch64-linux-gnu
/usr/local/lib
But a PC running debian will store its hardware libs in a different locations, not aarch libs
So I use these library paths for my i5 mini PC running debian
/usr/lib
/usr/lib/i386-linux-gnu
/usr/local/lib
So you still reference all the standard libs, installed by you or by linux but machine specific content is located in i386 in my case..(I can't 100% be sure your's won't be x64 or something)
Just find out what your bins are in your usr/lib dir and that will be the dir you send your systems to.