Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 893 Bytes

README.md

File metadata and controls

35 lines (28 loc) · 893 Bytes

Fetch default Fabric binaries

Run the following command:

cd $FPC_PATH/fabric
make

Build custom Fabric binaries

The following assumes that the FABRIC_PATH environment variable contains the path to Fabric's source code.

cd $FPC_PATH/fabric
make native

Note that this applies all fabric code patches residing in patches. This is optional and not required in order to use FPC. To clean the native build, type cd $FPC_PATH/fabric; make clean-native.

Common errors

Wrong Fabric version

Patching Fabric ...
Aborting! Tag on current HEAD () does not match expected tag/v2.5.9!
...

Seems that your Fabric is on the wrong branch. Try to run pushd $FABRIC_PATH; git checkout tags/v2.5.3; popd; followed by make again.