Skip to content

Commit

Permalink
Merge pull request #19925 from hrydgard/cross-simd-no-simd
Browse files Browse the repository at this point in the history
Add no-SIMD fallback for CrossSIMD
  • Loading branch information
hrydgard authored Jan 28, 2025
2 parents 689492e + c78fa60 commit fbb9cc2
Show file tree
Hide file tree
Showing 8 changed files with 569 additions and 20 deletions.
26 changes: 26 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "",
"osx": {
"program": "${workspaceFolder}/build/PPSSPPSDL.app/Contents/MacOS/PPSSPPSDL"
},
"linux": {
"program": "${workspaceRoot}/build/PPSSPPSDL"
},
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb"
}
]
}
Loading

0 comments on commit fbb9cc2

Please sign in to comment.