Commit Graph

40671 Commits

Author SHA1 Message Date
Matthew Flatt
254f6a4f14 cs: fix 'nonatomic allocation in 32-bit mode 2019-11-25 16:23:52 -07:00
Matthew Flatt
f3cfac8981 cs: fix popcount in data/bit-vector for 32-bit mode
Related to #2925
2019-11-25 15:06:09 -07:00
Paulo Matos
b1b8beece5
Use AC_CHECK_MEMBERS to check for dirent name length flds (#2923)
If `struct dirent` has `namlen` field, define `HAVE_DIRENT_NAMLEN`.
If the field is instead `namelen`, define `HAVE_DIRENT_NAMELEN` (case of QNX). 

Use this checks in `rktio_fs.c` and simplify `platform.h`.
2019-11-25 16:35:10 +01:00
Matthew Flatt
219bac7fe7 cs configure: propagate preprocessor flags to rktio 2019-11-24 08:10:47 -05:00
Matthew Flatt
cd4ce30ca6 avoid compiler warning 2019-11-24 06:58:02 -05:00
Matthew Flatt
ebbf578b6c cs: fix memset address handling 2019-11-23 20:19:50 -05:00
Matthew Flatt
e0851e6753 cs: range check on seconds->date 2019-11-23 20:19:39 -05:00
Matthew Flatt
c611f126fd JIT: fix 32-bit non-Mac stack alignment
Fix function-call setup to align the stack to a 16-byte boundary on
all platforms.
2019-11-23 17:33:08 -05:00
Matthew Flatt
0bb23c3998 cs: improve checking for "uuid.h" 2019-11-23 17:27:24 -05:00
Paulo Matos
aecee7ff30
Fix typos on windows build README (#2919) 2019-11-23 22:00:21 +01:00
Matthew Flatt
d1bfa6a203 cs: fix error reporting for struct selectors
Fix error reporting for non-inlined struct selectors to use Racket
style instead of Chez Scheme style.

Closes #2926
2019-11-23 15:39:27 -05:00
Matthew Flatt
7eb1ef9250 cs: fix printing on struct type with custom write
Don't try to use a struct type's custom-write procedure on the struct
type itself.

Relevant to #2926
2019-11-23 15:32:10 -05:00
Matthew Flatt
cd048cb1d0 repair arity problems
Fix many incorrect arity declarations and actual arities in Racket CS,
and fix several incorrect arities in traditional Racket. Building
Racket CS now checks the information in "racket/src/cs/primitives"
against both Racket variants to make sure that they're all consistent.

Closes #2924
2019-11-23 15:32:10 -05:00
Matthew Flatt
91190bee63 continuation-prompt-available?: repairs CS and non-CS Racket
Racket CS did not support the optional second argument for
`continuation-prompt-available?`. Traditional racket did not produce a
sensible result for the prompt tag that is used to delimit a
composable continuation or in some cases for the default continuation
prompt tag.
2019-11-23 14:56:17 -05:00
Paulo Matos
da32df2ed0 Add workflow for PR continuous integration (#2917)
Uses GitHub Actions.

Currently skips documentation, runs fewer platforms than commits to master.
2019-11-22 08:57:36 -05:00
Ross Angle
73dd32cd51 doc: show correct signatures for bound-id-set-map and bound-id-set-for-each (#2881) 2019-11-21 18:49:20 -03:00
Paulo Matos
e9670895a8
Use fetch-depth 100 for Racket checkouts (#2920)
This speeds up things considerably. No gain to be had for smaller depths. 

Thanks to @samth for the benchmarks.
2019-11-20 23:19:04 +01:00
Paulo Matos
6e63f6a99f
Initial commit to new CI system based on GitHub Actions (#2916)
Jobs to build CGC, 3m and CS separately on Linux and macOS.
2019-11-20 16:56:52 +01:00
Reuben Thomas
7e3a8c9a3b In-place build: cope with default setting of prefix
configure scripts look for and read a local configuration file given by the
environment variable CONFIG_SITE. This can set variables such as prefix.

Racket’s build system was assuming that prefix would be set to NONE unless a
--prefix command line argument was given. But it could be set by a
CONFIG_SITE configuration file instead.

Hence, for in-place build add an explicit --disable-useprefix option, to
cause any prefix setting to be ignored, and use that in the top-level
Makefile.

Regenerate the configure scripts to get the updated code.
2019-11-18 18:25:37 +01:00
Reuben Thomas
fb9a4a219d Remove erroneously checked-in unused autoconf files 2019-11-18 18:25:37 +01:00
Sam Tobin-Hochstadt
532e649bfd
Clarify embedded executable issues (#2908) 2019-11-15 21:02:20 -05:00
Paulo Matos
0fc4ce418e
Avoid automated semicolon insertion in JavaScript (#2912) 2019-11-15 14:55:12 +01:00
Matthew Flatt
ee4ceb7ae4 expnder: fix problem with nested instantiation
A use of `local-expand` and other things in a module's phase-1
instantiation could trigger a nested attempt to instantiate a module.
2019-11-14 09:18:30 -07:00
Matthew Flatt
0cd7cdaa1f repair bytes-utf-8-ref for #\xFFFF result 2019-11-13 19:33:58 -07:00
Matthew Flatt
ea7452a3ed copy MIT and Apache license files in place on install 2019-11-12 20:15:54 -07:00
Matthew Flatt
52b01ef88b racket/runtime-path: add support for 'share paths
Support include-if-exists for files in the "share" directory analogous
to the include-if-exists support for files in "lib".
2019-11-12 20:10:06 -07:00
Matthew Flatt
3192c02b80 cs: fix struct-type-make-constructor
Support the optional name argument and fix the default name.

Closes #2905
2019-11-12 14:29:06 -07:00
Matthew Flatt
1442c1860a makefile: avoid redundant CPUS parsing for some targets 2019-11-12 14:29:06 -07:00
Matthew Flatt
46a73b3d36 expose custom-{write,print-quotable}-accessor as accessor
Revert the part of 39a96dd699 that hides the provenance of these
accessors. Although exposing the fact that the predicates are for
structure properties constrains some internal representations, that
constraint seems unlikely to matter, and exposing the procedures as
property predicates is more consistent with the documentation and the
implementation (especially for Racket CS).

Closes #2904
2019-11-12 14:29:06 -07:00
Paulo Matos
b6627956b6
Improve gcc detection in configure script (#2897)
Improve gcc detection in configure script

We have been detecting gcc by the CC variable but this fails under
ubuntu for example where you might specify CC='gcc-8' to ./configure. 
Also consider clang impersonator to be gcc.

Related to #2890
2019-11-12 19:26:36 +01:00
Winny
3cb41850fa Separate GCC and GNU Make detection (#2902)
Related to #2890.

This ensures when GNU Make is `make`, the `version.mak` file is used
regardless of `CC`.
2019-11-12 10:19:19 +01:00
Matthew Flatt
19411c0dec configure: fix schver.h parsing
Related to #2890
2019-11-11 07:29:35 -06:00
Matthew Flatt
5eb04dfa9e add continuation-mark-set->iterator
Support continuation-mark inspection proportional to the amount that
needs to be inspected, instead of having to build a list of length
propotional to the size of a continuation.

In Racket CS, use iteration to improve exception-handling chaining.
Traditional Racket already used similar functonality internally.
2019-11-10 19:56:58 -06:00
Zaoqi
8aef27ccf5 reference: (unbox (box-immutable v)) returns v (#2898) 2019-11-09 21:20:54 -05:00
Matthew Flatt
913e8fba5b reference: 'cs is allowed for system-library-subpath 2019-11-08 08:41:28 -07:00
Sam Tobin-Hochstadt
11d8f5c4ce
Mention relicensing in HISTORY.txt. (#2895)
* Mention relicensing in HISTORY.txt.
2019-11-08 10:32:16 -05:00
Paulo Matos
1eb64f3961 Test all XML collection
Related to #2886 and #2887
2019-11-07 18:18:32 +01:00
Matthew Flatt
d14940d22d racket/HISTORY.txt: update for v7.5 2019-11-07 10:14:37 -07:00
Matthew Flatt
470e82a65d adjust / on complex inexact numbers
Add a special case for a real divided by a complex, and remove
(probably) misguided special cases for inexact zero real and imaginary
parts. These changes bring complex `/` further in line for Racket and
Racket CS.

Related to racket/typed-racket#868
2019-11-06 05:33:25 -07:00
Matthew Flatt
d1c65f7067 reference: repair for module->exports et al.
Update documentation for some functions that accept a module path
index in addition to a module path or resolved module path.
2019-11-05 19:49:38 -07:00
Matthew Flatt
ebd7cec834 expander: fix higher-phase variable/syntax provide tracking
The check for whether a provided identifier is syntax or a variable
cuold incorrectly inspect a module that is not yet prepared for the
relevant phase.
2019-11-05 19:36:41 -07:00
Matthew Flatt
b0e5cc8c35 build guide: fix typesetting for some flags 2019-11-05 19:36:41 -07:00
Ben Greenman
0c6f50d57d rebuild 'build.md' 2019-11-03 14:45:20 -05:00
Ben Greenman
6779995485 doc: racket-build-guide, fix small typos 2019-11-03 09:56:18 -05:00
Ben Greenman
5651b36b65 remove root CONTRIBUTING.md
There's already a file `.github/CONTRIBUTING.md`
2019-11-03 09:45:35 -05:00
Ben Greenman
3628df837a doc: partially revert eb20dc44
Bring back the exists gotcha, but not the references to the
`racket/exists' language.
2019-11-03 09:41:35 -05:00
Matthew Flatt
3f94fab01b README tweak 2019-11-03 06:13:16 -07:00
David K. Storrs
68aac8caf0 Added a 'CONTRIBUTING.md' file (#2523)
* Added a 'CONTRIBUTING.md' file

* Update CONTRIBUTING.md

Added link to blog post based on euhmeuh's suggestion

Co-Authored-By: dstorrs <david.storrs@gmail.com>

* propose shorter guide

* add link "About Pull Requests"

Add a link to a GitHub guide on pull requests (thanks to @spdegabrielle)

Remove some text & links to make the un-rendered file easier to read. The missing links are easy to find from the remaining ones.
2019-11-02 23:04:27 -04:00
Ben Greenman
d08e9134ed doc: lambda, move margin-note up, close #2863 2019-11-02 23:14:12 -04:00
Ben Greenman
fd34039c8d doc: replace keyword with argument name 2019-11-02 22:03:34 -04:00