dynarmic/externals
MerryMage 93c289b54f Use tsl::robin_map and tsl::robin_set
Replace std::unordered_map and std::unordered_set with the above.
Better performance profile.
2020-05-26 20:51:48 +01:00
..
catch externals: Update catch to 2.11.1 2020-04-22 21:04:23 +01:00
fmt externals: Update fmt to 6.2.0 2020-04-23 21:03:34 +01:00
mp externals: Update mp to 649fde1 2020-04-22 21:06:56 +01:00
robin-map externals: Add robin-map 2020-05-26 20:51:29 +01:00
xbyak externals: Update xbyak to 73ac586 2020-04-22 21:02:25 +01:00
CMakeLists.txt Use tsl::robin_map and tsl::robin_set 2020-05-26 20:51:48 +01:00
README.md Use tsl::robin_map and tsl::robin_set 2020-05-26 20:51:48 +01:00

This repository uses subtrees to manage some of its externals.

Initial setup

git remote add externals-fmt https://github.com/fmtlib/fmt.git --no-tags
git remote add externals-mp https://github.com/MerryMage/mp.git --no-tags
git remote add externals-robin-map https://github.com/Tessil/robin-map.git --no-tags
git remote add externals-xbyak https://github.com/herumi/xbyak.git --no-tags

Updating

Change <ref> to refer to the appropriate git reference.

git fetch externals-fmt
git fetch externals-mp
git fetch externals-robin-map
git fetch externals-xbyak
git subtree pull --squash --prefix=externals/fmt externals-fmt <ref>
git subtree pull --squash --prefix=externals/mp externals-mp <ref>
git subtree pull --squash --prefix=externals/robin-map externals-robin-map <ref>
git subtree pull --squash --prefix=externals/xbyak externals-xbyak <ref>