oven-sh / bun

Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one
https://bun.sh
Other
71.73k stars 2.55k forks source link

⛔ bun install doesn't work at all `1.1.4` #10369

Open jexroid opened 2 months ago

jexroid commented 2 months ago

What version of Bun is running?

1.1.4

What platform is your computer?

Microsoft Windows NT 10.0.19045.0 x64

What steps can reproduce the bug?

whenever i try to install using bun this happens:

bun install v1.1.4 (fbe2fe0c)
  🔍 tsparticles [44/135] Illegal instruction at address 0x7ff765972ce1
???:?:?: 0x7ff765972f7f in ??? (bun.exe)
???:?:?: 0x7ff764e9f57e in ??? (bun.exe)
???:?:?: 0x7ff764db4554 in ??? (bun.exe)
???:?:?: 0x7ff764dbd79a in ??? (bun.exe)
???:?:?: 0x7ff764ff4773 in ??? (bun.exe)
???:?:?: 0x7ffedba57343 in ??? (KERNEL32.DLL)
???:?:?: 0x7ffedd7026b0 in ??? (ntdll.dll)
Illegal instruction at address 0x7ff765972ce1
???:?:?: 0x7ff765972f7f in ??? (bun.exe)
???:?:?: 0x7ff764e9f57e in ??? (bun.exe)
???:?:?: 0x7ff764db4554 in ??? (bun.exe)
???:?:?: 0x7ff764dbd79a in ??? (bun.exe)
???:?:?: 0x7ff764ff4773 in ??? (bun.exe)
  🔍 vite [69/183] ???:?:?: 0x7ffedba57343 in ??? (KERNEL32.DLL)
???:?:?: 0x7ffedd7026b0 in ??? (ntdll.dll)
Illegal instruction at address 0x7ff765972ce1
???:?:?: 0x7ff765972f7f in ??? (bun.exe)
???:?:?: 0x7ff764e9f57e in ??? (bun.exe)
???:?:?: 0x7ff764db4554 in ??? (bun.exe)
???:?:?: 0x7ff764dbd79a in ??? (bun.exe)
???:?:?: 0x7ff764ff4773 in ??? (bun.exe)
???:?:?: 0x7ffedba57343 in ??? (KERNEL32.DLL)
???:?:?: 0x7ffedd7026b0 in ??? (ntdll.dll)
Illegal instruction at address 0x7ff765972ce1
???:?:?: 0x7ff765972f7f in ??? (bun.exe)
???:?:?: 0x7ff764e9f57e in ??? (bun.exe)
???:?:?: 0x7ff764db4554 in ??? (bun.exe)
???:?:?: 0x7ff764dbd79a in ??? (bun.exe)
???:?:?: 0x7ff764ff4773 in ??? (bun.exe)
???:?:?: 0x7ffedba57343 in ??? (KERNEL32.DLL)
???:?:?: 0x7ffedd7026b0 in ??? (ntdll.dll)
Illegal instruction at address 0x7ff765972ce1
???:?:?: 0x7ff765972f7f in ??? (bun.exe)
???:?:?: 0x7ff764db4554 in ??? (bun.exe)
???:?:?: 0x7ff764dbd79a in ??? (bun.exe)
???:?:?: 0x7ff764ff4773 in ??? (bun.exe)
???:?:?: 0x7ffedba57343 in ??? (KERNEL32.DLL)
???:?:?: 0x7ffedd7026b0 in ??? (ntdll.dll)

What is the expected behavior?

No response

What do you see instead?

No response

Additional information

No response

Electroid commented 2 months ago

Would you be able to share your package.json? Also, were you able to do this before 1.1.4?

jexroid commented 2 months ago

I couldn't install anything before 1.1.4 and 1.1.4. it doesn't matter what packages I install, I tried installing a lot of things but none of them work.

here is the package.json:

{
  "name": "maryamcleaner",
  "private": true,
  "version": "0.0.0",
  "type": "module",
  "scripts": {
    "dev": "vite",
    "build": "vite build",
    "preview": "vite preview"
  },
  "devDependencies": {
    "autoprefixer": "^10.4.19",
    "daisyui": "^4.10.2",
    "postcss": "^8.4.38",
    "tailwindcss": "^3.4.3",
    "vite": "^5.2.0"
  }
}