Skip to content

Commit 026e479

Browse files
authored
Merge branch 'master' into sparse-find-next
2 parents daee267 + 4a3d708 commit 026e479

File tree

521 files changed

+23236
-24372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

521 files changed

+23236
-24372
lines changed

.travis.yml

+32-14
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,41 @@
11
language: cpp
2-
sudo: false
2+
sudo: required
33
dist: trusty
44
matrix:
55
include:
66
- os: linux
77
env: ARCH="i686"
8-
compiler: "g++ -m32"
8+
compiler: "g++-5 -m32"
99
addons:
1010
apt:
11+
sources:
12+
- ubuntu-toolchain-r-test
1113
packages:
1214
- libssl1.0.0
1315
- bar
1416
- time
15-
- gcc-multilib
16-
- g++-multilib
17+
- binutils
18+
- gcc-5
19+
- g++-5
20+
- gcc-5-multilib
21+
- g++-5-multilib
1722
- make:i386
1823
- libssl-dev:i386
19-
- gfortran
20-
- gfortran-multilib
24+
- gfortran-5
25+
- gfortran-5-multilib
2126
- os: linux
2227
env: ARCH="x86_64"
23-
compiler: "g++ -m64"
28+
compiler: "g++-5 -m64"
2429
addons:
2530
apt:
31+
sources:
32+
- ubuntu-toolchain-r-test
2633
packages:
2734
- libssl1.0.0
2835
- bar
2936
- time
30-
- gfortran
37+
- g++-5
38+
- gfortran-5
3139
- os: osx
3240
env: ARCH="x86_64"
3341
osx_image: xcode8
@@ -56,10 +64,19 @@ before_install:
5664
- make check-whitespace
5765
- if [ `uname` = "Linux" ]; then
5866
contrib/travis_fastfail.sh || exit 1;
67+
mkdir -p $HOME/bin;
68+
ln -s /usr/bin/gcc-5 $HOME/bin/gcc;
69+
ln -s /usr/bin/g++-5 $HOME/bin/g++;
70+
ln -s /usr/bin/gfortran-5 $HOME/bin/gfortran;
71+
ln -s /usr/bin/gcc-5 $HOME/bin/x86_64-linux-gnu-gcc;
72+
ln -s /usr/bin/g++-5 $HOME/bin/x86_64-linux-gnu-g++;
5973
gcc --version;
6074
BAR="bar -i 30";
61-
BUILDOPTS="-j3 VERBOSE=1 FORCE_ASSERTIONS=1 LLVM_ASSERTIONS=1";
75+
BUILDOPTS="-j5 VERBOSE=1 FORCE_ASSERTIONS=1 LLVM_ASSERTIONS=1";
6276
echo "override ARCH=$ARCH" >> Make.user;
77+
sudo sh -c "echo 0 > /proc/sys/net/ipv6/conf/lo/disable_ipv6";
78+
export JULIA_CPU_CORES=4;
79+
export JULIA_TEST_MAXRSS_MB=1200;
6380
TESTSTORUN="all";
6481
elif [ `uname` = "Darwin" ]; then
6582
brew update;
@@ -81,6 +98,8 @@ before_install:
8198
export JULIA_MACOS_SPAWN="DYLD_FALLBACK_LIBRARY_PATH=\"$DYLD_FALLBACK_LIBRARY_PATH\" \$1";
8299
export BUILDOPTS="$BUILDOPTS spawn=\$(JULIA_MACOS_SPAWN)";
83100
make $BUILDOPTS -C contrib -f repackage_system_suitesparse4.make;
101+
export JULIA_CPU_CORES=2;
102+
export JULIA_TEST_MAXRSS_MB=600;
84103
TESTSTORUN="all --skip linalg/triangular subarray"; fi # TODO: re enable these if possible without timing out
85104
- git clone -q git://git.kitenet.net/moreutils
86105
script:
@@ -115,13 +134,12 @@ script:
115134
fi
116135
- cd .. && mv julia julia2
117136
# run tests
118-
- /tmp/julia/bin/julia --precompiled=no -e 'true' &&
119-
/tmp/julia/bin/julia-debug --precompiled=no -e 'true'
137+
- /tmp/julia/bin/julia --sysimage-native-code=no -e 'true' &&
138+
/tmp/julia/bin/julia-debug --sysimage-native-code=no -e 'true'
120139
- /tmp/julia/bin/julia -e 'versioninfo()'
121140
- pushd /tmp/julia/share/julia/test
122-
- export JULIA_CPU_CORES=2 && export JULIA_TEST_MAXRSS_MB=600 &&
123-
/tmp/julia/bin/julia --check-bounds=yes runtests.jl $TESTSTORUN &&
124-
/tmp/julia/bin/julia --check-bounds=yes runtests.jl libgit2-online download pkg
141+
- /tmp/julia/bin/julia --check-bounds=yes runtests.jl $TESTSTORUN &&
142+
/tmp/julia/bin/julia --check-bounds=yes runtests.jl libgit2-online download pkg
125143
- popd
126144
# test that the embedding code works on our installation
127145
- mkdir /tmp/embedding-test &&

CONTRIBUTING.md

-4
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,6 @@ All docstrings are written inline above the methods or types they are associated
141141
4. check the output in `doc/_build/html/` to make sure the changes are correct;
142142
5. commit your changes and open a pull request.
143143

144-
> **Note**
145-
>
146-
> Currently there are a large number of docstrings found in `base/docs/helpdb/Base.jl`. When any of these docstrings are modified please move them out of this file and place them above the most appropriate definition in one of the `base/` source files.
147-
148144
#### Adding a new docstring to `base/`
149145

150146
The steps required to add a new docstring are listed below:

LICENSE.md

-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ their own licenses:
5454
- [ARPACK](http://www.caam.rice.edu/software/ARPACK/RiceBSD.txt#LICENSE) [BSD-3]
5555
- [DSFMT](http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/LICENSE.txt) [BSD-3]
5656
- [OPENLIBM](https://github.com/JuliaLang/openlibm/blob/master/LICENSE.md) [MIT, BSD-2, ISC]
57-
- [OPENSPECFUN](https://github.com/JuliaLang/openspecfun) [MIT, public domain]
58-
- [FADDEEVA](http://ab-initio.mit.edu/Faddeeva) [MIT]
5957
- [GMP](http://gmplib.org/manual/Copying.html#Copying) [LGPL3+ or GPL2+]
6058
- [LIBGIT2](https://github.com/libgit2/libgit2/blob/development/COPYING) [GPL2+ with unlimited linking exception]
6159
- [CURL](https://curl.haxx.se/docs/copyright.html) [MIT/X derivative]

Make.inc

+8-9
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ USE_SYSTEM_PCRE:=0
3131
USE_SYSTEM_LIBM:=0
3232
USE_SYSTEM_OPENLIBM:=0
3333
UNTRUSTED_SYSTEM_LIBM:=0
34-
USE_SYSTEM_OPENSPECFUN:=0
3534
USE_SYSTEM_DSFMT:=0
3635
USE_SYSTEM_BLAS:=0
3736
USE_SYSTEM_LAPACK:=0
@@ -1124,19 +1123,19 @@ endef
11241123
endif
11251124

11261125
define symlink_target
1127-
CLEAN_TARGETS += clean-$(2)/$(1)
1128-
clean-$$(abspath $(2)/$(1)):
1126+
CLEAN_TARGETS += clean-$(2)/$(3)
1127+
clean-$$(abspath $(2)/$(3)):
11291128
ifeq ($(BUILD_OS), WINNT)
1130-
@-cmd //C rmdir $$(call mingw_to_dos,$(2)/$(1),cd $(2) &&)
1129+
@-cmd //C rmdir $$(call mingw_to_dos,$(2)/$(3),cd $(2) &&)
11311130
else
1132-
@-rm $$(abspath $(2)/$(1))
1131+
@-rm $$(abspath $(2)/$(3))
11331132
endif
1134-
$$(subst $$(abspath $(JULIAHOME))/,,$$(abspath $(2)/$(1))): $$(abspath $(2)/$(1))
1135-
$$(abspath $(2)/$(1)): | $$(abspath $(2))
1133+
$$(subst $$(abspath $(JULIAHOME))/,,$$(abspath $(2)/$(3))): $$(abspath $(2)/$(3))
1134+
$$(abspath $(2)/$(3)): | $$(abspath $(2))
11361135
ifeq ($(BUILD_OS), WINNT)
1137-
@cmd //C mklink //J $$(call mingw_to_dos,$(2)/$(1),cd $(2) &&) $$(call mingw_to_dos,$(1),)
1136+
@cmd //C mklink //J $$(call mingw_to_dos,$(2)/$(3),cd $(2) &&) $$(call mingw_to_dos,$(1),)
11381137
else ifneq (,$(findstring CYGWIN,$(BUILD_OS)))
1139-
@cmd /C mklink /J $$(call cygpath_w,$(2)/$(1)) $$(call cygpath_w,$(1))
1138+
@cmd /C mklink /J $$(call cygpath_w,$(2)/$(3)) $$(call cygpath_w,$(1))
11401139
else ifdef JULIA_VAGRANT_BUILD
11411140
@cp -R $$(abspath $(1)) $$@
11421141
else

Makefile

+14-11
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default: $(JULIA_BUILD_MODE) # contains either "debug" or "release"
1919
all: debug release
2020

2121
# sort is used to remove potential duplicates
22-
DIRS := $(sort $(build_bindir) $(build_depsbindir) $(build_libdir) $(build_private_libdir) $(build_libexecdir) $(build_includedir) $(build_includedir)/julia $(build_sysconfdir)/julia $(build_datarootdir)/julia $(build_man1dir))
22+
DIRS := $(sort $(build_bindir) $(build_depsbindir) $(build_libdir) $(build_private_libdir) $(build_libexecdir) $(build_includedir) $(build_includedir)/julia $(build_sysconfdir)/julia $(build_datarootdir)/julia $(build_datarootdir)/julia/site $(build_man1dir))
2323
ifneq ($(BUILDROOT),$(JULIAHOME))
2424
BUILDDIRS := $(BUILDROOT) $(addprefix $(BUILDROOT)/,base src ui doc deps test test/perf examples examples/embedding)
2525
BUILDDIRMAKE := $(addsuffix /Makefile,$(BUILDDIRS))
@@ -49,7 +49,10 @@ configure:
4949
endif
5050

5151
$(foreach dir,$(DIRS),$(eval $(call dir_target,$(dir))))
52-
$(foreach link,base test,$(eval $(call symlink_target,$(link),$(build_datarootdir)/julia)))
52+
$(foreach link,base test,$(eval $(call symlink_target,$(link),$(build_datarootdir)/julia,$(link))))
53+
54+
build_defaultpkgdir = $(build_datarootdir)/julia/site/$(shell echo $(VERSDIR))
55+
$(eval $(call symlink_target,stdlib,$(build_datarootdir)/julia/site,$(shell echo $(VERSDIR))))
5356

5457
julia_flisp.boot.inc.phony: julia-deps
5558
@$(MAKE) $(QUIET_MAKE) -C $(BUILDROOT)/src julia_flisp.boot.inc.phony
@@ -81,7 +84,7 @@ ifndef JULIA_VAGRANT_BUILD
8184
endif
8285
endif
8386

84-
julia-deps: | $(DIRS) $(build_datarootdir)/julia/base $(build_datarootdir)/julia/test
87+
julia-deps: | $(DIRS) $(build_datarootdir)/julia/base $(build_datarootdir)/julia/test $(build_defaultpkgdir)
8588
@$(MAKE) $(QUIET_MAKE) -C $(BUILDROOT)/deps
8689

8790
julia-base: julia-deps $(build_sysconfdir)/julia/juliarc.jl $(build_man1dir)/julia.1 $(build_datarootdir)/julia/julia-config.jl
@@ -218,9 +221,12 @@ COMMA:=,
218221
define sysimg_builder
219222
$$(build_private_libdir)/sys$1.o: $$(build_private_libdir)/inference.ji $$(JULIAHOME)/VERSION $$(BASE_SRCS)
220223
@$$(call PRINT_JULIA, cd $$(JULIAHOME)/base && \
221-
$$(call spawn,$3) $2 -C "$$(JULIA_CPU_TARGET)" --output-o $$(call cygpath_w,$$@) $$(JULIA_SYSIMG_BUILD_FLAGS) \
222-
--startup-file=no --warn-overwrite=yes --sysimage $$(call cygpath_w,$$<) sysimg.jl $$(RELBUILDROOT) \
223-
|| { echo '*** This error is usually fixed by running `make clean`. If the error persists$$(COMMA) try `make cleanall`. ***' && false; } )
224+
if $$(call spawn,$3) $2 -C "$$(JULIA_CPU_TARGET)" --output-o $$(call cygpath_w,$$@).tmp $$(JULIA_SYSIMG_BUILD_FLAGS) \
225+
--startup-file=no --warn-overwrite=yes --sysimage $$(call cygpath_w,$$<) sysimg.jl $$(RELBUILDROOT); then \
226+
mv $$(call cygpath_w,$$@).tmp $$(call cygpath_w,$$@); \
227+
else \
228+
echo '*** This error is usually fixed by running `make clean`. If the error persists$$(COMMA) try `make cleanall`. ***' && false; \
229+
fi )
224230
.SECONDARY: $(build_private_libdir)/sys$1.o
225231
endef
226232
ifneq ($(CPUID_SPECIFIC_BINARIES),0)
@@ -251,9 +257,6 @@ ifeq ($(USE_SYSTEM_LIBM),0)
251257
JL_PRIVATE_LIBS += openlibm
252258
endif
253259
endif
254-
ifeq ($(USE_SYSTEM_OPENSPECFUN),0)
255-
JL_PRIVATE_LIBS += openspecfun
256-
endif
257260
ifeq ($(USE_SYSTEM_DSFMT),0)
258261
JL_PRIVATE_LIBS += dSFMT
259262
endif
@@ -551,9 +554,9 @@ test: check-whitespace $(JULIA_BUILD_MODE)
551554
@$(MAKE) $(QUIET_MAKE) -C $(BUILDROOT)/test default JULIA_BUILD_MODE=$(JULIA_BUILD_MODE)
552555

553556
ifeq ($(JULIA_BUILD_MODE),release)
554-
JULIA_SYSIMG=$(build_private_libdir)/sys$(JULIA_LIBSUFFIX).$(SHLIB_EXT)
557+
JULIA_SYSIMG=$(build_private_libdir)/sys$(JULIA_LIBSUFFIX)$(CPUID_TAG).$(SHLIB_EXT)
555558
else
556-
JULIA_SYSIMG=$(build_private_libdir)/sys-$(JULIA_BUILD_MODE)$(JULIA_LIBSUFFIX).$(SHLIB_EXT)
559+
JULIA_SYSIMG=$(build_private_libdir)/sys-$(JULIA_BUILD_MODE)$(JULIA_LIBSUFFIX)$(CPUID_TAG).$(SHLIB_EXT)
557560
endif
558561
testall: check-whitespace $(JULIA_BUILD_MODE)
559562
cp $(JULIA_SYSIMG) $(BUILDROOT)/local.$(SHLIB_EXT) && $(JULIA_EXECUTABLE) -J $(call cygpath_w,$(BUILDROOT)/local.$(SHLIB_EXT)) -e 'true' && rm $(BUILDROOT)/local.$(SHLIB_EXT)

0 commit comments

Comments
 (0)