ludo
A libretro frontend written in golang
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
brew install
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
apk
Alpine Linux 패키지 관리 도구.
더 많은 정보: <https://wiki.alpinelinux.org/wiki/Alpine_Package_Keeper>.
apk upgrade {{[-U|--update-cache]}}
모든 원격 저장소에서 저장소 색인 업데이트:
apk update
새 패키지 설치:
apk add {{package}}
패키지 제거:
apt-get
설명 보기 ▼
apt-get
Debian 및 Ubuntu 패키지 관리 도구.
`apt-cache`를 사용하여 패키지를 검색하세요.
Ubuntu 16.04 이후 버전에서는 대화형 사용 시 `apt` 사용을 권장합니다.
더 많은 정보: <https://manned.org/apt-get.8>.
sudo apt-get update
사용 가능한 패키지 및 버전 목록 업데이트 (다른 `apt-get` 명령어 실행 전에 권장됨):
sudo apt-get install {{package}}
패키지 설치 또는 최신 버전으로 업데이트:
sudo apt-get remove {{package}}
패키지 제거:
lib
설명 보기 ▼
lib
Microsoft Library Manager(라이브러리 관리 도구)로, 오브젝트 파일로부터 정적 라이브러리를 생성하고 관리.
더 많은 정보: <https://learn.microsoft.com/cpp/build/reference/lib-reference>.
lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}
오브젝트 파일로부터 정적 라이브러리 생성:
lib /LIST {{path\to\library.lib}}
라이브러리의 내용 목록 표시:
lib {{path\to\library.lib}} {{path\to\file.obj}}
기존 라이브러리에 오브젝트 파일 추가:
