ludo
A libretro frontend written in golang
File Explorer
- cd.yml
- ci.yml
- audio.go
- audio_test.go
- effect.go
- Polar Rescue (USA).vec
- Polar Rescue (USA).zip
- vecx_libretro.dll
- vecx_libretro.dylib
- vecx_libretro.so
- core.go
- core_test.go
- environment.go
- dat.go
- history.go
- binds_joypad.go
- binds_keyboard.go
- input.go
- input_test.go
- mappings.go
- cfuncs.go
- libretro.go
- libretro.h
- libretro_core.go
- libretro_notwindows.go
- libretro_windows.go
- connman.go
- releases.go
- services.go
- hints.go
- input.go
- menu.go
- menu_test.go
- notifications.go
- palette.go
- scene.go
- scene_core_disk_control.go
- scene_core_options.go
- scene_dialog.go
- scene_explorer.go
- scene_history.go
- scene_keyboard.go
- scene_main.go
- scene_playlist.go
- scene_quick.go
- scene_savestates.go
- scene_settings.go
- scene_tabs.go
- scene_updater.go
- scene_wifi.go
- thumbnail.go
- tweens.go
- notifications.go
- notifications_test.go
- options.go
- ips.go
- patch.go
- ups.go
- ups_test.go
- control
- entitlements.xml
- Info.plist
- ludo.desktop
- Sega - Master System - Mark III.csv
- playlists.go
- playlists_test.go
- savefiles.go
- savestates.go
- scanner.go
- cores_arm.go
- cores_notarm.go
- defaults.go
- settings.go
- state.go
- utils.go
- border_frag_shader.go
- circle_frag_shader.go
- crt_frag_shader.go
- default_frag_shader.go
- default_vert_shader.go
- font.go
- font_frag_shader.go
- font_vert_shader.go
- gfx.go
- gfx_test.go
- lcd_frag_shader.go
- rounded_frag_shader.go
- screenshot.go
- shader_utils.go
- sharpbilinear_frag_shader.go
- video.go
- video_darwin.go
- video_notdarwin.go
- .editorconfig
- .gitignore
- .gitmodules
- assets
- COPYING
- database
- go.mod
- go.sum
- main.go
- Makefile
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
go build
View Details ▼
go build
Compile Go sources.
go build {{path/to/main.go}}
Compile a 'package main' file (output will be the filename without extension):
go build -o {{path/to/binary}} {{path/to/source.go}}
Compile, specifying the output filename:
go build -o {{path/to/binary}} {{path/to/package}}
Compile a package:
apk
View Details ▼
apk
Alpine Linux package management tool.
apk upgrade {{[-U|--update-cache]}}
Update repository indexes and upgrade all packages:
apk update
Only update repository indexes:
apk add {{package}}
Install a new package:
apt-get
View Details ▼
apt-get
Debian and Ubuntu package management utility.
Search for packages using `apt-cache`.
It is recommended to use `apt` when used interactively in Ubuntu versions 16.04 and later.
sudo apt-get update
Update the list of available packages and versions (it's recommended to run this before other `apt-get` commands):
sudo apt-get install {{package}}
Install a package, or update it to the latest available version:
sudo apt-get remove {{package}}
Remove a package:
lib
View Details ▼
lib
The Microsoft Library Manager for creating and managing static libraries of object files.
lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}
Create a static library from object files:
lib /LIST {{path\to\library.lib}}
List the contents of a library:
lib {{path\to\library.lib}} {{path\to\file.obj}}
Add an object file to an existing library:
