summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Upload to unstable.HEADdebian/0.9.27+git20200814.62c30a4a-1archive/debian/0.9.27+git20200814.62c30a4a-1masterThomas Preud'homme2020-08-14
|
* Set Rules-Requires-Root to no.Thomas Preud'homme2020-08-14
|
* Add upstream metadata.Thomas Preud'homme2020-08-14
|
* Strip bcheck.o not stripped by dh_stripThomas Preud'homme2020-08-14
|
* Bump Standards-Version to 4.5.0.Thomas Preud'homme2020-08-14
|
* Point to mob branch on Vcs-Git field.Thomas Preud'homme2020-08-14
|
* Bump debhelper compat to 13.Thomas Preud'homme2020-08-14
|
* Remove unneeded backup of tcc-doc.html.Thomas Preud'homme2020-08-14
|
* Create changelog entry for new upstream release.Thomas Preud'homme2020-08-14
|
* merge patched into masterThomas Preud'homme2020-08-14
|\
| * Prevent dead code on !x86 in prepare_dynamic_relThomas Preud'homme2020-08-14
| | | | | | | | | | | | | | | | | | | | | | | | | | In prepare_dynamic_rel() on non x86 targets the count++ statements appear before any case label and are therefore dead code. This triggers build failure when building with -Werror. This patch adds an extra guard around all the x86 case labels and their associated action, leaving just the default case label for non x86 targets which builds fine. Origin: vendor Forwarded: http://repo.or.cz/tinycc.git/commit/776aa0c093cc6083cbb61d0db8e303209b21bbad Applied-Upstream: commit:776aa0c093cc6083cbb61d0db8e303209b21bbad Last-Updated: 2018-02-24
| * Disable stack protector in runtime libraryThomas Preud'homme2020-08-14
| | | | | | | | | | | | | | | | | | | | tcc fails to run when compiled by itself and its runtime library was built with any variant of -fstack-protector. This is why test3 fails when libtcc1.a is build with -fstack-protector. Origin: vendor Forwarded: no Last-Update: 2018-02-24
| * Disable test not working on i386Thomas Preud'homme2020-08-14
| | | | | | | | | | | | | | | | | | | | get_asm_string function does not compile with GCC on i386 and thus makes the testsuite fail on i386. This is a testism so it is fine do simply disable the test on such platform while upstream fixes it. Origin: vendor Forwarded: no Last-Update: 2018-02-21
| * New upstream version 0.9.27+git20200814.62c30a4aThomas Preud'homme2020-08-14
| |
* | record new upstream branchThomas Preud'homme2020-08-14
| |
* | Enable VFP if targeting armhf.Thomas Preud'homme2018-03-15
| |
* | merge patched into masterThomas Preud'homme2018-03-15
|\ \
| * | Select VFP if triplet is arm-linux-gnueabihfThomas Preud'homme2018-03-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A target triplet of arm-linux-gnueabihf indicates that the compiler should use the VFP variant of the calling convention which as its name implies requires VFP. This commit enables VFP when triplet is arm-linux-gnueabihf. Origin: http://repo.or.cz/tinycc.git/commit/c41caac02d53373b296ccb179b730ada62137cc0 Forwarded: http://repo.or.cz/tinycc.git/commit/c41caac02d53373b296ccb179b730ada62137cc0 Last-Updated: 2018-03-15 Applied-Upstream: commit:c41caac02d53373b296ccb179b730ada62137cc0
* | | Upload to unstabledebian/0.9.27-8archive/debian/0.9.27-8Thomas Preud'homme2018-03-15
| | |
* | | Fix --cpu value to pass to configure for arm64 host.Thomas Preud'homme2018-03-15
| | |
* | | Add missing close in 0.9.27-7 changelog entryThomas Preud'homme2018-03-15
| | |
* | | Upload to unstabledebian/0.9.27-7archive/debian/0.9.27-7Thomas Preud'homme2018-03-14
| | |
* | | Remove useless echo in debian/rulesThomas Preud'homme2018-03-14
| | |
* | | Fix retrieval of DEB_HOST_MULTIARCH for i386 host.Thomas Preud'homme2018-03-14
| | |
* | | Set host CPU based on Debian architecture to ensure reproducible buildThomas Preud'homme2018-03-13
| | |
* | | Declare fast forward from 0.9.27-5debian/0.9.27-6archive/debian/0.9.27-6Thomas Preud'homme2018-03-09
|\ \ \ | | | | | | | | | | | | [dgit --overwrite]
| * | | Fix -pthread option handlingMichael Matz2018-02-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adding -pthread confused option parsing as the number of file counting came out wrong. Origin: upstream, http://repo.or.cz/tinycc.git/commit/3b27b3b1d1ae953f5ecb37f5bc95758499d66971 Bug-Debian: https://bugs.debian.org/891592 Last-Update: 2018-02-28 Applied-Upstream: commit:3b27b3b1d1ae953f5ecb37f5bc95758499d66971 Gbp-Pq: Name 0004-Fix-pthread-option-handling.patch
| * | | Prevent dead code on !x86 in prepare_dynamic_relThomas Preud'homme2018-02-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In prepare_dynamic_rel() on non x86 targets the count++ statements appear before any case label and are therefore dead code. This triggers build failure when building with -Werror. This patch adds an extra guard around all the x86 case labels and their associated action, leaving just the default case label for non x86 targets which builds fine. Origin: vendor Forwarded: http://repo.or.cz/tinycc.git/commit/776aa0c093cc6083cbb61d0db8e303209b21bbad Applied-Upstream: commit:776aa0c093cc6083cbb61d0db8e303209b21bbad Last-Updated: 2018-02-24 Gbp-Pq: Name 0003-Prevent-dead-code-on-x86-in-prepare_dynamic_rel.patch
| * | | Disable stack protector in runtime libraryThomas Preud'homme2018-02-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tcc fails to run when compiled by itself and its runtime library was built with any variant of -fstack-protector. This is why test3 fails when libtcc1.a is build with -fstack-protector. Origin: vendor Forwarded: no Last-Update: 2018-02-24 Gbp-Pq: Name 0002-Disable-stack-protector-in-runtime-library.patch
| * | | Disable test not working on i386Thomas Preud'homme2018-02-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | get_asm_string function does not compile with GCC on i386 and thus makes the testsuite fail on i386. This is a testism so it is fine do simply disable the test on such platform while upstream fixes it. Origin: vendor Forwarded: no Last-Update: 2018-02-21 Gbp-Pq: Name 0001-Disable-test-not-working-on-i386.patch
| * | | tcc (0.9.27-5) unstable; urgency=mediumThomas Preud'homme2018-02-28
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * debian/control: + Update Vcs fields. * debian/patches: + update forwarded status of the patch. + add patch fixing -pthread option handling (Closes: #891592, thanks Vincent Lefevre). [dgit import unpatched tcc 0.9.27-5]
| | * | | Import tcc_0.9.27-5.debian.tar.xzThomas Preud'homme2018-02-28
| | / / | | | | | | | | | | | | [dgit import tarball tcc 0.9.27-5 tcc_0.9.27-5.debian.tar.xz]
| * / / Import tcc_0.9.27.orig.tar.bz2Thomas Preud'homme2018-02-23
| / / | | | | | | | | | [dgit import orig tcc_0.9.27.orig.tar.bz2]
* | | Upload to unstableThomas Preud'homme2018-03-09
| | |
* | | Use same .gitignore as in source tarballThomas Preud'homme2018-03-09
| | |
* | | Remove local-options to satisfy dgitThomas Preud'homme2018-03-09
| | |
* | | Restore tcc-doc.html in clean target.Thomas Preud'homme2018-03-09
| | |
* | | merge patched into masterThomas Preud'homme2018-03-09
|\| |
| * | Remove asm-c-connect-sep in tests clean targetThomas Preud'homme2018-03-09
| | | | | | | | | | | | | | | | | | | | | Origin: vendor Forwarded: http://repo.or.cz/tinycc.git/commit/e76058c478f37f22998fc59044f8cbbf59a66584 Last-Update: 2018-03-09 Applied-Upstream: commit:e76058c478f37f22998fc59044f8cbbf59a66584
* | | Use dpkg-architecture to set i386-tcc multiarchThomas Preud'homme2018-03-09
| | |
* | | Use architecture-dependent overrides.Thomas Preud'homme2018-03-09
| | |
* | | Fix typo in earlier changelog entriesThomas Preud'homme2018-03-09
| | |
* | | symlink i386-tcc man to tcc manThomas Preud'homme2018-03-09
| | |
* | | remove useless build and clean overridesThomas Preud'homme2018-03-09
| | |
* | | enable build of i386 tcc cross-compiler (Closes: #673380).Thomas Preud'homme2018-03-09
| | |
* | | Simplify Debian architecture check.Thomas Preud'homme2018-03-09
| | |
* | | Upload to unstableThomas Preud'homme2018-02-28
| | |
* | | Use canonical URL for Vcs-Browser fieldThomas Preud'homme2018-02-28
| | |
* | | Mention added patch in changelog fileThomas Preud'homme2018-02-28
| | |
* | | merge patched into masterThomas Preud'homme2018-02-28
|\| |