Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
  • 2 commits
  • 3 files changed
  • 0 commit comments
  • 2 contributors
Commits on Mar 07, 2017
BUILDBOT: Add psp2 platform build
Showing with 24 additions and 1 deletion.
  1. +22 −0 config/master.cfg
  2. +1 −1 public_html/builds.html
  3. +1 −0 public_html/update_builds_html.pl
@@ -711,6 +711,28 @@ p_stable["package"].extend( [
scumm_platforms_master["psp"] = p_master
scumm_platforms_stable["psp"] = p_stable

# PSP2
scumm_root_psp2 = "/opt/toolchains/psp2"
scumm_env_psp2 = copy.deepcopy(scumm_env)
scumm_env_psp2["PATH"] = "%s/vitasdk/bin:%s" % (scumm_root_psp2, DEFAULT_PATH)
scumm_env_psp2["VITASDK"] = "%s/vitasdk" % (scumm_root_psp2)

p_master = {
"configureargs": [
"--host=psp2"
],
"env": scumm_env_psp2,
"disttarget": "psp2vpk",
"package": [ "scummvm.vpk" ],
"archive_format": ".zip"
}

p_stable = copy.deepcopy(p_master)

scumm_platforms_master["psp2"] = p_master
scumm_platforms_stable["psp2"] = p_stable
scumm_untestable_platforms.append("psp2")

# PS2
scumm_root_ps2 = "/opt/toolchains/ps2"
scumm_env_ps2 = copy.deepcopy(scumm_env)

No commit comments for this range

You can’t perform that action at this time.