Re: [Chicken-users] Error compiling chicken cygwin x86_64

2016-02-02 Thread Peter Sommerfeld

Am 02.02.2016 um 15:19 schrieb Christian Kellermann:

* Peter Sommerfeld  [160202 15:07]:

BTW: Are you the maintainer of the cygwin port?


Yeah but that's mostly because there hasn't been anyone else :)
Please feel free to send any issues with cygwin my way, so I can get
it fixed upstream.


No complaints so far, except this one. I think it would be better to
provide 2 targets, cygwin_x86 and cygwin_x86_64 or something like this.

Peter

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


[Chicken-users] [TFP 2016] 1st call for papers

2016-02-02 Thread Peter Achten

-
C A L L   F O R   P A P E R S
-

 TFP 2016 ===

  17th Symposium on Trends in Functional Programming
   June 8-10, 2016
 University of Maryland, College Park
 Near Washington, DC
 http://tfp2016.org/


The symposium on Trends in Functional Programming (TFP) is an
international forum for researchers with interests in all aspects of
functional programming, taking a broad view of current and future
trends in the area. It aspires to be a lively environment for
presenting the latest research results, and other contributions (see
below). Authors of draft papers will be invited to submit revised
papers based on the feedback receive at the symposium.  A
post-symposium refereeing process will then select a subset of these
articles for formal publication.

TFP 2016 will be the main event of a pair of functional programming
events. TFP 2016 will be accompanied by the International Workshop on
Trends in Functional Programming in Education (TFPIE), which will take
place on June 7nd.

The TFP symposium is the heir of the successful series of Scottish
Functional Programming Workshops. Previous TFP symposia were held in
   * Edinburgh (Scotland) in 2003;
   * Munich (Germany) in 2004;
   * Tallinn (Estonia) in 2005;
   * Nottingham (UK) in 2006;
   * New York (USA) in 2007;
   * Nijmegen (The Netherlands) in 2008;
   * Komarno (Slovakia) in 2009;
   * Oklahoma (USA) in 2010;
   * Madrid (Spain) in 2011;
   * St. Andrews (UK) in 2012;
   * Provo (Utah, USA) in 2013;
   * Soesterberg (The Netherlands) in 2014;
   * and Inria Sophia-Antipolis (France) in 2015.
For further general information about TFP please see the TFP homepage.
(http://www.tifp.org/).


== SCOPE ==

The symposium recognizes that new trends may arise through various
routes.  As part of the Symposium's focus on trends we therefore
identify the following five article categories. High-quality articles
are solicited in any of these categories:

Research Articles: leading-edge, previously unpublished research work
Position Articles: on what new trends should or should not be
Project Articles: descriptions of recently started new projects
Evaluation Articles: what lessons can be drawn from a finished project
Overview Articles: summarizing work with respect to a trendy subject

Articles must be original and not simultaneously submitted for
publication to any other forum. They may consider any aspect of
functional programming: theoretical, implementation-oriented, or
experience-oriented.  Applications of functional programming
techniques to other languages are also within the scope of the
symposium.

Topics suitable for the symposium include, but are not limited to:

 Functional programming and multicore/manycore computing
 Functional programming in the cloud
 High performance functional computing
 Extra-functional (behavioural) properties of functional programs
 Dependently typed functional programming
 Validation and verification of functional programs
 Debugging and profiling for functional languages
 Functional programming in different application areas:
   security, mobility, telecommunications applications, embedded
   systems, global computing, grids, etc.
 Interoperability with imperative programming languages
 Novel memory management techniques
 Program analysis and transformation techniques
 Empirical performance studies
 Abstract/virtual machines and compilers for functional languages
 (Embedded) domain specific languages
 New implementation strategies
 Any new emerging trend in the functional programming area

If you are in doubt on whether your article is within the scope of
TFP, please contact the TFP 2016 program chair, David Van Horn.


== BEST PAPER AWARDS ==

To reward excellent contributions, TFP awards a prize for the best paper
accepted for the formal proceedings.

TFP traditionally pays special attention to research students,
acknowledging that students are almost by definition part of new
subject trends. A student paper is one for which the authors state
that the paper is mainly the work of students, the students are listed
as first authors, and a student would present the paper. A prize for
the best student paper is awarded each year.

In both cases, it is the PC of TFP that awards the prize. In case the
best paper happens to be a student paper, that paper will then receive
both prizes.


== SPONSORS ==

TFP is financially supported by CyberPoint, Galois, Trail of Bits, and
the University of Maryland Computer Science Department.


== PAPER SUBMISSIONS ==

Acceptance of articles for presentation at the symposium is based on a
lightweight peer review process of extended abstracts (4 to 10 pages
in length) or full papers (20 

Re: [Chicken-users] Error compiling chicken cygwin x86_64

2016-02-02 Thread Christian Kellermann
* Peter Sommerfeld  [160202 15:37]:
> Am 02.02.2016 um 15:19 schrieb Christian Kellermann:
> >* Peter Sommerfeld  [160202 15:07]:
> >>BTW: Are you the maintainer of the cygwin port?
> >
> >Yeah but that's mostly because there hasn't been anyone else :)
> >Please feel free to send any issues with cygwin my way, so I can get
> >it fixed upstream.
>
> No complaints so far, except this one. I think it would be better to
> provide 2 targets, cygwin_x86 and cygwin_x86_64 or something like this.

For CHICKEN? Well that's a philosophical question. The build system
distinguishes between runtime environment (cygwin, BSD, linux, Haiku,
...) and machine architecture. Hence the two make variables.

For cygwin there are two flavours available. The snippet I have posted
is taken from the cygport script that will be used to build both.

Kind regards,

Christian


--
May you be peaceful, may you live in safety, may you be free from
suffering, and may you live with ease.

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


[Chicken-users] Error compiling chicken cygwin x86_64

2016-02-02 Thread Peter Sommerfeld
I've compiled chicken without any problems on cygwin x86 on a 32 bit 
notebook. The same fail swith cygwin 86_64:

--
$ make PLATFORM=cygwin PREFIX=~/local VARDIR=~/
gcc -fno-strict-aliasing -fwrapv -DHAVE_CHICKEN_CONFIG_H 
-DC_ENABLE_PTABLES -c apply-hack.x86.S -o apply-hack.x86.o

apply-hack.x86.S: Assembler messages:
apply-hack.x86.S:35: Error: operand type mismatch for `call'
rules.make:184: die Regel für Ziel „apply-hack.x86.o“ scheiterte
make: *** [apply-hack.x86.o] Fehler 1
--
Adding ARCH=x86_64:
-
$ make PLATFORM=cygwin PREFIX=~/local VARDIR=~/ ARCH=x86_64
make: *** Keine Regel vorhanden, um das Ziel „apply-hack.x86_64.S“,
benötigt von „apply-hack.x86_64.o“, zu erstellen.  Schluss.
--

Any help appreciated

Peter

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error compiling chicken cygwin x86_64

2016-02-02 Thread Peter Sommerfeld

Am 02.02.2016 um 12:14 schrieb Christian Kellermann:

Hi!

Please note that there is an up to date package available for cygwin.
It should work for 32bit and 64bit platforms. Or do you have any
special needs building it?


No special needs. I just want to have the same setup and versions on all
platforms I use: Win10 (32 + 64 bit), SuseTW and DragonflyBSD.

Where can I find the up to date package. Or do I have to use svn?

Peter

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error compiling chicken cygwin x86_64

2016-02-02 Thread Christian Kellermann
* Peter Sommerfeld  [160202 12:22]:
> Am 02.02.2016 um 12:14 schrieb Christian Kellermann:
> >Hi!
> >
> >Please note that there is an up to date package available for cygwin.
> >It should work for 32bit and 64bit platforms. Or do you have any
> >special needs building it?
>
> No special needs. I just want to have the same setup and versions on all
> platforms I use: Win10 (32 + 64 bit), SuseTW and DragonflyBSD.
>
> Where can I find the up to date package. Or do I have to use svn?

Click on the package to install when running setup.exe

--
May you be peaceful, may you live in safety, may you be free from
suffering, and may you live with ease.

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error compiling chicken cygwin x86_64

2016-02-02 Thread Peter Sommerfeld

Am 02.02.2016 um 12:35 schrieb Christian Kellermann:

* Peter Sommerfeld  [160202 12:22]:

Am 02.02.2016 um 12:14 schrieb Christian Kellermann:


Please note that there is an up to date package available for cygwin.
It should work for 32bit and 64bit platforms. Or do you have any
special needs building it?


No special needs. I just want to have the same setup and versions on all
platforms I use: Win10 (32 + 64 bit), SuseTW and DragonflyBSD.

Where can I find the up to date package. Or do I have to use svn?


Click on the package to install when running setup.exe
Sorry, seems to be a missunderstanding. The build-in chicken works. But 
I want to *compile* it myself to have the same setup on all platform. 
So, these are probably special needs. This are my intentions:


make PLATFORM=cygwin PREFIX=~/local VARDIR=~/

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error compiling chicken cygwin x86_64

2016-02-02 Thread Christian Kellermann
* Peter Sommerfeld  [160202 12:55]:
> Am 02.02.2016 um 12:35 schrieb Christian Kellermann:
> >* Peter Sommerfeld  [160202 12:22]:
> >>Am 02.02.2016 um 12:14 schrieb Christian Kellermann:
> >>>
> >>>Please note that there is an up to date package available for cygwin.
> >>>It should work for 32bit and 64bit platforms. Or do you have any
> >>>special needs building it?
> >>
> >>No special needs. I just want to have the same setup and versions on all
> >>platforms I use: Win10 (32 + 64 bit), SuseTW and DragonflyBSD.
> >>
> >>Where can I find the up to date package. Or do I have to use svn?
> >
> >Click on the package to install when running setup.exe
> Sorry, seems to be a missunderstanding. The build-in chicken works. But I
> want to *compile* it myself to have the same setup on all platform. So,
> these are probably special needs. This are my intentions:
>
> make PLATFORM=cygwin PREFIX=~/local VARDIR=~/


Ah!

>From my cygport file:

AR=$(arch)
if [ $AR = "i686" ]
then
   MAKEOPTS="PREFIX=/usr PLATFORM=cygwin ARCH=x86"
elif [ $AR = "x86_64" ]
then
  MAKEOPTS="PREFIX=/usr PLATFORM=cygwin ARCH=x86-64 HACKED_APPLY="
else
  ECHO "Unknown Architecture"
fi

That should work. Adjust the PREFIX as needed.

HTH,

Christian

--
May you be peaceful, may you live in safety, may you be free from
suffering, and may you live with ease.

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error compiling chicken cygwin x86_64

2016-02-02 Thread Peter Sommerfeld

Hi Christian!
Am 02.02.2016 um 15:19 schrieb Christian Kellermann:

Please feel free to send any issues with cygwin my way,
so I can get it fixed upstream.

Well, one mor issue ... (continue on list or to you only?)

# My setup: compiles and installes! (32bit)

make PLATFORM=cygwin PREFIX=~/local VARDIR=~/

# bashrc

PATH=~/local/bin:$PATH
export PATH
export CHICKEN_REPOSITORY=~/chicken/7

# calling csi
$ csi
$ C:/cygwin/home/Peter/local/bin/csi.exe: error while loading shared 
libraries: cygchicken-0.dll: cannot open shared object file: No such 
file or directory

-bash: C:/cygwin/home/Peter/local/bin/csi.exe:: No such file or directory

# There is no cygchicken-0.dll.

~/local/lib/libchicken.a
libchicken.dll.a
~/local/include/chicken.h
chicken-config.h
~/chicken/7 --> all file as elf shared lib .so, no win .dll

I suspekt there is an option missing to create dlls ???

Its time for a sleep now :-)

Good night!

Peter







___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error compiling chicken cygwin x86_64

2016-02-02 Thread Peter Sommerfeld


Am 02.02.2016 um 13:10 schrieb Christian Kellermann:

 From my cygport file:

AR=$(arch)
if [ $AR = "i686" ]
then
MAKEOPTS="PREFIX=/usr PLATFORM=cygwin ARCH=x86"
elif [ $AR = "x86_64" ]
then
   MAKEOPTS="PREFIX=/usr PLATFORM=cygwin ARCH=x86-64 HACKED_APPLY="
else
   ECHO "Unknown Architecture"
fi

That should work. Adjust the PREFIX as needed.


Thanks Christian!

I will try it later.

Peter

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error compiling chicken cygwin x86_64

2016-02-02 Thread Peter Sommerfeld

Am 02.02.2016 um 13:10 schrieb Christian Kellermann:

From my cygport file:

AR=$(arch) if [ $AR = "i686" ] then MAKEOPTS="PREFIX=/usr
PLATFORM=cygwin ARCH=x86" elif [ $AR = "x86_64" ] then
MAKEOPTS="PREFIX=/usr PLATFORM=cygwin ARCH=x86-64 HACKED_APPLY="
else ECHO "Unknown Architecture" fi

That should work. Adjust the PREFIX as needed.


Hi Christian,

it is sufficient to use a commandline like this:

PLATFORM=cygwin PREFIX=~/local VARDIR=~/ ARCH=x86_64 HACKED_APPLY=""

Thanks again!

Peter

BTW: Are you the maintainer of the cygwin port?

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users