Skip to content

Commit

Permalink
gmcs script is no longer installed.
Browse files Browse the repository at this point in the history
The intention is to make build failures easy to spot instead of silently upgrading
target framework from 2 to 4 and then fail down the road on e.g type ambiguity
caused by new 4.0 framework types or methods
  • Loading branch information
marek-safar committed Dec 8, 2014
1 parent 41ee4e7 commit b304ec5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 14 deletions.
1 change: 0 additions & 1 deletion mono-core.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ rm -rf %buildroot
%_bindir/dmcs
%_bindir/gacutil
%_bindir/gacutil2
%_bindir/gmcs
%_bindir/ikdasm
%_bindir/mcs
%_bindir/mono
Expand Down
8 changes: 1 addition & 7 deletions runtime/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ clean-local:

endif BUILD_MCS

TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/ilasm $(tmpinst)/bin/mcs $(tmpinst)/bin/gmcs $(tmpinst)/bin/dmcs $(tmpinst)/bin/al2 $(tmpinst)/bin/al
TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/ilasm $(tmpinst)/bin/mcs $(tmpinst)/bin/dmcs $(tmpinst)/bin/al2 $(tmpinst)/bin/al

mcs-do-test-profiles:
cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(test_profiles)' test-profiles
Expand Down Expand Up @@ -167,12 +167,6 @@ $(tmpinst)/bin/mcs: $(tmpinst)/bin/mono Makefile
echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/build/mcs.exe"'" "$$@"' >> $@ ; \
chmod +x $@

$(tmpinst)/bin/gmcs: $(tmpinst)/bin/mono Makefile
echo '#! /bin/sh' > $@ ; \
r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/build/mcs.exe -sdk:2"'" "$$@"' >> $@ ; \
chmod +x $@

$(tmpinst)/bin/dmcs: $(tmpinst)/bin/mono Makefile
echo '#! /bin/sh' > $@ ; \
r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
Expand Down
6 changes: 0 additions & 6 deletions scripts/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ bin_SCRIPTS = \
mono-test-install \
peverify \
mcs \
gmcs \
mono-heapviz \
$(scripts_mono_configuration_crypto)

Expand Down Expand Up @@ -154,7 +153,6 @@ EXTRA_DIST = \
xbuild.in \
update_submodules \
mcs.in \
gmcs.in \
dmcs.in \
mono-test-install \
mono-heapviz \
Expand Down Expand Up @@ -203,10 +201,6 @@ mcs: mcs.in Makefile
$(REWRITE_COMMON) $(srcdir)/mcs.in > $@.tmp
mv -f $@.tmp $@

gmcs: gmcs.in Makefile
$(REWRITE_COMMON) $(srcdir)/gmcs.in > $@.tmp
mv -f $@.tmp $@

dmcs: dmcs.in Makefile
$(REWRITE_COMMON) $(srcdir)/dmcs.in > $@.tmp
mv -f $@.tmp $@
Expand Down

0 comments on commit b304ec5

Please sign in to comment.