Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
download:sac2c [2017/12/08 09:11] sbsdownload:sac2c [2018/01/30 00:20] – updated tgz install instructions hnv
Line 14: Line 14:
 </callout> </callout>
  
-=== RHEL-based === +{{filelist>packages/release/sac*&style=page&recursive=1&sort=name&direct=1&showdate=0&showsize=1}}
-{{filelist>packages/RPM/*.rpm&style=table&recursive=1&sort=ctime&direct=1&showdate=1&showsize=1}} +
- +
-=== Debian-based === +
-{{filelist>packages/DEB/*.deb&style=table&recursive=1&sort=ctime&direct=1&showdate=1&showsize=1}} +
- +
-=== MacOS X === +
-{{filelist>packages/APPLE/*.pkg&style=table&recursive=1&sort=ctime&direct=1&showdate=1&showsize=1}} +
- +
-=== Generic Linux ===  +
-{{filelist>packages/TGZ/*.tar.gz&style=table&recursive=1&sort=ctime&direct=1&showdate=1&showsize=1}}+
  
 === Extra === === Extra ===
-We also have some //user-contributed// packages --- as these are packages outwith the project, we can not provide any support on these. Please communicate with the +We also have some //user-contributed// packages --- as these are packages outwith the project, we can not provide any support on these. Please communicate with the package maintainers. 
  
 {{tablelayout?colwidth=","}} {{tablelayout?colwidth=","}}
Line 40: Line 30:
 </callout> </callout>
  
-=== RHEL-based === +{{filelist>packages/weekly/sac*&style=page&recursive=1&sort=name&direct=1&showdate=0&showsize=1}}
-{{filelist>packages/RPM-weekly/*.rpm&style=table&recursive=1&sort=ctime&direct=1&showdate=1&showsize=1}} +
- +
-=== Debian-based === +
-{{filelist>packages/DEB-weekly/*.deb&style=table&recursive=1&sort=ctime&direct=1&showdate=1&showsize=1}} +
- +
-=== MacOS X === +
-{{filelist>packages/APPLE-weekly/*.pkg&style=table&recursive=1&sort=ctime&direct=1&showdate=1&showsize=1}} +
- +
-=== Generic Linux ===  +
-{{filelist>packages/TGZ-weekly/*.tar.gz&style=table&recursive=1&sort=ctime&direct=1&showdate=1&showsize=1}}+
  
 ==== Installing ==== ==== Installing ====
Line 84: Line 64:
 </panel> </panel>
 <panel type="default" title="TAR.GZ (Unix-like operating systems)"> <panel type="default" title="TAR.GZ (Unix-like operating systems)">
-The ''.tar.gz'' archive is the most basic distributable package that available. The archive contains the entire directory structure of the binaries and libraries as they should appear on the file-system of the host from the root directory (i.e. ''/''). The default directory structure is prefixed with ''/usr/local''.+The ''.tar.gz'' archive is intended for arbitrary installs, meaning that if you can't install ''sac2c'' using one of the other packages due to system permissions, you can use this archive to install it under you home-directory. The libraries of the compiler can be placed anywhere so long as the ''sac2c'' binary (and related) know where to find themFor this reason the archive provides the ''sac2c'' binary (and relatedas source code to be compiled by the end-user. 
 + 
 +For simplicities sake, an install script is provided. It supports several flags, but the most important one is ''-i'' to indicate where you want to install everything (for example ''~/.local'').
  
 <alert type="warning" icon="fa fa-warning">**Be Aware** Please remember to install all dependencies of the compiler before attempting to use it</alert> <alert type="warning" icon="fa fa-warning">**Be Aware** Please remember to install all dependencies of the compiler before attempting to use it</alert>
Line 90: Line 72:
 Installation of the compiler is as simple as extracting from the archive: Installation of the compiler is as simple as extracting from the archive:
 <code> <code>
-sudo tar --strip-components=1 -C / -xzf sac2c-VERSION-RELEASE.tar.gz+mkdir ~/temp_extract && cd ~/temp_extract 
 +tar -xzf sac2c-VERSION-RELEASE.tar.gz 
 +$ nano README                            # if you want more information on the install 
 +$ bash ./install.sh -i INSTALL_DIR       # and thats it 
 +$ cd ~ && rm -rf temp_extract
 </code> </code>
 </panel> </panel>