feat(AtomicParsley): add explicit libc detection

This commit is contained in:
AJ ONeal
2023-11-06 18:50:01 -07:00
parent 53d023aac9
commit 1ac39b70fe
+5 -1
View File
@@ -8,10 +8,13 @@ let targets = {
x86win: {
os: 'windows',
arch: 'x86',
libc: 'msvc',
},
x64win: {
os: 'windows',
arch: 'amd64',
// https://github.com/wez/atomicparsley/issues/6#issuecomment-1364523028
libc: 'msvc',
},
x64mac: {
os: 'macos',
@@ -20,11 +23,12 @@ let targets = {
x64lin: {
os: 'linux',
arch: 'amd64',
libc: 'gnu',
},
x64musl: {
os: 'linux',
arch: 'amd64',
_musl_native: true,
libc: 'musl',
},
};