Re: How can I install ATS2 in FreeBSD?

2017-10-12 Thread gmhwxi
I installed FreeBSD today and went through the whole process of compiling and installing ATS. Basically, all you need to do is gmake MAKE=gmake MAKE4J=gmake CCOMP=clang If you want to install ATS, you do the following next: gmake install That is it. On Wednesday, October 11, 2017 at 12:47:03

Re: How can I install ATS2 in FreeBSD?

2017-10-11 Thread Lajto
I already read that post before writing here, and I tried all that the author says (even using gcc with a symlink) without any achievement. I think the problem is here: ## # CCOMP=clang # GCFLAG= #GCFLAG=-D_ATS_NGC #GCFLAG=-D_ATS_GCBDW #GCFLAG=-D_ATS_GCATS # CFLAGS= LDFLAGS= # ## What

Re: How can I install ATS2 in FreeBSD?

2017-10-10 Thread Hongwei Xi
That is good. Maybe this one can help: https://llaisdy.wordpress.com/2014/04/30/building-and-installing-ats-on-freebsd/ On Tue, Oct 10, 2017 at 4:33 PM, Lajto wrote: > config.mk was generated. This is its content: > > INSTALL := /usr/bin/install -c > PACKAGE_TARNAME :=

Re: How can I install ATS2 in FreeBSD?

2017-10-10 Thread Lajto
config.mk was generated. This is its content: INSTALL := /usr/bin/install -c PACKAGE_TARNAME := ats2-postiats PACKAGE_VERSION := 0.3.7 prefix := /usr/local exec_prefix := ${prefix} bindir := ${exec_prefix}/bin abs_top_srcdir := /usr/home/lajto/.ats2-folder AR := ar CC := cc LN_S := ln -s

Re: How can I install ATS2 in FreeBSD?

2017-10-10 Thread Lajto
New problems: gmake -j4 -C src/CBOOT patsopt CCOMP=clang GCFLAG= LDFLAGS= gmake[1]: se entra en el directorio '/usr/home/lajto/.ats2-folder/src/CBOOT' gmake[1]: *** No hay ninguna regla para construir el objetivo 'patsopt'. Alto. gmake[1]: se sale del directorio

Re: How can I install ATS2 in FreeBSD?

2017-10-10 Thread gmhwxi
Now my guess is that you did not generate config.mk. You need to first generate config.mk using config.mk.in. On Tuesday, October 10, 2017 at 4:20:44 PM UTC-4, gmhwxi wrote: > > > May be you can fix line 105 and line 106 as follow: > > export PATSHOME=$(PATSHOME) > export

Re: How can I install ATS2 in FreeBSD?

2017-10-10 Thread gmhwxi
May be you can fix line 105 and line 106 as follow: export PATSHOME=$(PATSHOME) export PATSLIBHOME=$(PATSLIBHOME) On Tuesday, October 10, 2017 at 4:11:14 PM UTC-4, Lajto wrote: > > I did 'ln -s /usr/local/share/automake-1.15/install-sh .' and it works, > but then I have another problem: > >

Re: How can I install ATS2 in FreeBSD?

2017-10-10 Thread Lajto
I did 'ln -s /usr/local/share/automake-1.15/install-sh .' and it works, but then I have another problem: make: "/usr/home/lajto/.ats2-folder/Makefile" line 105: Variable/Value missing from "export" make: "/usr/home/lajto/.ats2-folder/Makefile" line 106: Variable/Value missing from "export"

Re: How can I install ATS2 in FreeBSD?

2017-10-10 Thread Hongwei Xi
Do 'locate install-sh' and you should find where it is on your machine. For instance, this is where it is located on my machine: /usr/share/automake-1.15/install-sh You can create a symbolic to it in your ${PATSHOME} directory: ln -s /usr/share/automake-1.15/install-sh . Then you should be

Re: How can I install ATS2 in FreeBSD?

2017-10-10 Thread Lajto
I installed: pkg install math/gmp libtool autoconf automake 'sh autogen.sh' works, but when I do './configure' I get this: checking for gcc... no checking for cc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of

Re: How can I install ATS2 in FreeBSD?

2017-10-09 Thread gmhwxi
The command 'configure' is generated from executing autogen.sh. Is there 'autoconf' support on FreeBSD? On Monday, October 9, 2017 at 11:49:30 AM UTC-4, Lajto wrote: > > I want to install ATS2 in FreeBSD, but there are some problems. I > downloaded ATS-Postiats-release using git and changed this

How can I install ATS2 in FreeBSD?

2017-10-09 Thread Lajto
I want to install ATS2 in FreeBSD, but there are some problems. I downloaded ATS-Postiats-release using git and changed this settings of the Makefile: MAKE = gmake MAKEJ4 = gmake CCOMP = clang When I try to do "./configure", I get: command not found In The FreeBSD Forums someone says that