The upstream Fuego project is a collection of C++ libraries for developing software for the game of Go.
The primary goal of the Fuego on iOS project is to provide a build of the Fuego source code for the iOS platform. The build is packaged into an XCFramework bundle that can be easily integrated into any Xcode project. The build tries to remain as close as possible to the original upstream source code, with only such modifications as are necessary to overcome any difficulties in 1) building for the iOS platform, and in 2) building with a modern version of Boost.
A secondary goal of the Fuego on iOS project is to provide an iOS build of Fuego that is suitable for integration into the Little Go project.
Fuego on iOS currently combines
The project is set up with the fuego-on-ios
branch as the default branch. This should allow you to get going immediately:
That's it, now all you need to do is integrate the Boost and Fuego frameworks into your project.
The Fuego on iOS project has 3 permanent task branches:
The next sections explain the purpose of each of these task branches. There are also a number of branches that correspond to upstream Subversion branches. These branches are of no particular interest to the Fuego on iOS project and exist simply to mirror the upstream repository structure.
Fuego on iOS uses svn2git
to mirror the upstream Subversion repository. The purpose of the master
branch is to track the upstream trunk
. No commits are allowed in master
except those made by svn2git
to synchronize with upstream. The reason for this hard rule is that svn2git
will rebase local commits on top of Subversion commits, which would lead to problems due to published history being changed.
Currently, upstream changes are manually synchronized from time to time. A future goal is to automate this process (see issue #1 on GitHub).
The fuego-on-ios
branch is dedicated to maintaining the following stuff:
boost/modular-boost
: A Git submodule that tracks a specific release of Boost in the official upstream repository.boost/boost.sh
: A script that builds Boost for the iOS platform and packages it into a framework bundle. The script is a derivate of Pete Goodliffe's "Boost on iPhone" script. The script was forked from this popular repo so that outstanding bugs could be fixed for the Fuego on iOS project.fuego-on-ios.xcodeproj
: The Xcode project that defines the build of Fuego for the iOS platform.build.sh
: A script that uses the Xcode project to build Fuego (via xcodebuild
) and packages the result into a framework bundle.Also in this branch are those changes to the original Fuego source code that are necessary to make Fuego compile in the Xcode environment.
The branch fuego-for-littlego
contains those changes to the Fuego source code that are required by the Little Go project.
These changes are separated into their own branch because the intent for the fuego-on-ios
branch is to keep that build as close to the original source as possible so that other people can take it from there and add their own stuff without the Little Go modifications (which might not be palatable to everyone).
You should use master
if you are a Git user who wants to work with the unmodified Fuego source code, but cannot be bothered to fiddle with Subversion or svn2git
. The master
branch simply takes care of "wrapping" the upstream Subversion repository in a Git repository. Currently the disadvantage is that the master
branch may not be up-to-date because it is manually synchronized.
You should use fuego-on-ios
if you want a ready-to-build Fuego + Boost environment. The build products are a regular framework bundle (Boost) and an XCFramework bundle (Fuego) that you can simply add to your iOS application project.
You probably will not be interested in fuego-for-littlego
at all, unless you want to study how the Little Go app integrates Fuego.
The fuego-on-ios
branch (and also the fuego-for-littlego
branch) contains a Git submodule in this project folder:
boost/modular-boost
The submodule points to a specific Boost release in the official upstream Boost repository on GitHub. After you clone the Fuego on iOS repository, you must perform the following commands to also clone the submodule:
cd /path/to/fuego-on-ios
git submodule init
git submodule update
IMPORTANT: Although the submodule tracks only a single tag of the upstream Git repository, cloning requires that the full upstream repo is replicated locally. Because the Boost project has a long history, the resulting download is quite large. At the time of writing the initial clone consumes roughly 480 MB of disk space. On a 3.0 mbps Internet connection this takes slightly more than 20 minutes to download.
These are the commands to first build Boost, then build Fuego:
cd boost
./boost.sh
cd ..
./build.sh
And these are the results of the build, to be integrated into other Xcode projects:
boost/ios/framework/boost.framework
ios/framework/fuego-on-ios.xcframework
The most important build settings are:
$(ARCHS_STANDARD)
)-std=gnu++98
)-stdlib=libc++
)Environment variables that you can set and export to override build settings (both for the Boost and the Fuego build scripts):
PHONEOS_BASESDK_VERSION
IPHONEOS_DEPLOYMENT_TARGET
IPHONE_SIMULATOR_BASESDK_VERSION
IPHONE_SIMULATOR_DEPLOYMENT_TARGET
Here are some notes on how to maintain the Fuego on iOS repository and its branches.
Checkout master
, then run this command:
svn2git --metadata --rebase
If you don't have svn2git
in your environment, read the section "Getting svn2git". If you do have svn2git, but running the command gives you an error message, you should probably read the section "Reconnecting a cloned Git repository with upstream Subversion repository" further down.
In an ideal world, the --rebase
command line option would update the local Git repository so that it is an exact mirror of the upstream Subversion repository. Unfortunately, in the svn2git
version that is current at the time of writing (v2.2.2) the mirroring capability of --rebase
is severely limited. In fact, the command line option does not do much else besides fetching upstream commits into the local Git repository. The following tasks need to be done manually:
git branch -r
git tag
svn/tags
for which there is no corresponding taggit show svn/tags/[TAG-NAME]
git tag -a -m "[LOG MESSAGE]" [TAG-NAME] svn/tags/[TAG-NAME]
git branch -rd svn/tags/[TAG-NAME]
git branch -a
git branch [BRANCH-NAME] remotes/svn/[BRANCH-NAME]
master
branch.
git reset --hard [COMMIT-REF]
Once the local Git repository is in shape, the changes can be pushed to GitHub.
All commits in master
up to the desired commit must be merged into the fuego-on-ios
branch. To keep things simple no cherry-picking is allowed.
After the merge, the Xcode project may also need to be updated (add new files, remove old files, update build settings).
After fuego-on-ios
has been updated, changes must be further merged into the fuego-for-littlego
branch.
To upgrade to a new Boost release, the modular-boost
submodule must be changed so that it points to the commit of the Git tag that represents the desired release. This must be done on the fuego-on-ios
branch. For instance, to upgrade to version 1.56.0:
cd /path/to/fugo-on-ios
git checkout fuego-on-ios
cd boost/modular-boost
git checkout boost-1.56.0
cd ../..
vi README.md # update Boost version
git add .
git commit -m "upgrade Boost to 1.56.0"
There is a possibility that the Fuego source code does not build with the new Boost release. If such a problem occurs, check with Fuego upstream if they already know a solution.
After fuego-on-ios
has been updated, changes must be further merged into the fuego-for-littlego
branch.
Increasing the deployment target is done on the fuego-on-ios
branch. Edit the following files to increase the deployment target:
After fuego-on-ios
has been updated, changes must be further merged into the fuego-for-littlego
branch.
All changes in the fuego-for-littlego
branch remain local to that branch.
Updates to this README file are made on the fuego-on-ios
branch and then merged into fuego-for-littlego
. The README file does not exist in master
.
svn2git
is a Ruby wrapper around git svn
. Source code and installation instructions are available from this GitHub repository. The Fuego on iOS project uses svn2git
because it adds two bits of magic to git svn
:
svn2git
creates native Git branches and tags from Subversion branches and tags, whereas git svn
just imports everything into the master
branch and creates remote tracking branches for Subversion branches and tags.svn2git
points HEAD of master
to the commit that represents the latest Subversion revision in the Subversion repo's trunk, whereas git svn
points HEAD of master
to the most recent Subversion revision, in whatever branch that may be (not necessarily trunk).As of this writing, the latest released version of svn2git
is 2.2.2. This version has a problem interacting with Git releases 1.8.3.2 and later. If you have this configuration, you can either downgrade Git on your system to 1.8.3.1, or you can get an unreleased version of svn2git where this fix has been integrated.
When you clone the Fuego on iOS repository from GitHub, you will not be able to use svn2git
to synchronize the local repository with upstream Fuego. The reason is that certain configuration information required by svn2git
(actually git svn
) is kept only locally and is not versioned in Git, i.e. this information cannot be shared via GitHub. Therefore, anyone who wants to use svn2git
must first reconnect their local clone of fuego-on-ios
to the upstream Subversion repository.
The indicator that you are affected by this is when you issue a svn2git
command and you get the error message "command failed: 2>&1 git svn fetch".
To fix the problem, add some configuration information to the .git/config
file of your local repository:
cd /path/to/fuego-on-ios
git config svn-remote.svn.url http://svn.code.sf.net/p/fuego/code
git config svn-remote.svn.fetch trunk:refs/remotes/trunk
git config svn-remote.svn.branches branches/*:refs/remotes/*
git config svn-remote.svn.tags tags/*:refs/remotes/tags/*
Now checkout master
if you have not yet done so, then run
svn2git --rebase
This takes quite a long time because it fetches all revisions from upstream Subversion. Behind the scenes the contents of the .git/svn
folder are restored. From now on, svn2git --rebase
should work as expected.
Assuming you have Boost installed somewhere locally (e.g. through Fink, MacPorts or Homebrew), you can run these commands to build and run Fuego for Mac OS X:
cd /path/to/fuego-on-ios
autoreconf -i
./configure --prefix $(pwd)/macosx
make
make install
./macosx/bin/fuego
Such a build may be useful to test patches on the command line.
This purely historical information documents how the fuego-on-ios
repository was initialized.
mkdir fuego-on-ios
cd fuego-on-ios
svn2git --metadata http://svn.code.sf.net/p/fuego/code/
Project creation:
File changes:
Project settings changes:
boost/ios/framework/boost.framework
)--quiet
)The original "Boost on iPhone" build script is (c) Copyright 2009 Pete Goodliffe. Check out the original article that presents the script. The comments below the article have useful pointers to derivates of the script.
Daniel Sefton and Joseph Galbraith made substantial improvements to the "Boost on iPhone" build script. The improvements are presented in this article. Again, the comments below the article have useful pointers to derivates of the script.
The script that builds Fuego as a framework is based on this work by Justin Weiss.
Thank you, everybody!