Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
lynx:compilers [2021/01/25 22:08] Igorlynx:compilers [2021/01/26 23:07] – [Building CC65] Igor
Line 17: Line 17:
 <code> <code>
 git clone https://github.com/cc65/cc65.git --single-branch git clone https://github.com/cc65/cc65.git --single-branch
 +cd cc65
 make all TARGETS=lynx make all TARGETS=lynx
 </code> </code>
  
-Once CC65 is built, the **cc65/bin** directory will contain all of the binaries and **cc65/lib** will contain the Lynx library. To build Lynx code all you need to do is include the **cc65/bin** directory in your **PATH**.+Once CC65 is built, the **cc65/bin** directory will contain all of the binaries and **cc65/lib** will contain the Lynx library. To build Lynx code all you need to do is include the **cc65/bin** directory in your **PATH**. For example... 
 + 
 +<code> 
 +export CC65_HOME=`pwd` 
 +export PATH="$CC65_HOME/bin:$PATH" 
 +</code>
  
 ===== Other Compilers ===== ===== Other Compilers =====