Skip to content

Double support #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 16 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 31 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ vgcore*
core.*
core
*.lo
*.a
*.so
*.la
**/data
**/*-runner
**/runner
**/*-runner
**/llvm-build-temp
tce/Makefile
Makefile.in
tce/Makefile.in
Expand All @@ -25,6 +28,31 @@ compiletest.*.log
testsuite/systemtest/bintools/Scheduler/**/program.bc
testsuite/systemtest_long/bintools/Scheduler/**/program.bc
testsuite/systemtest_long/bintools/Compiler/**/program.bc
tce/test/**/*.tpf
tce/test/**/*.tpef
tce/test/**/*.bin
tce/test/applibs/Assembler/AssemblerTest/data/temp.tceasm
tce/test/applibs/Explorer/DesignSpaceExplorerTest/data/test.dsdb
tce/test/applibs/Explorer/ExplorerPluginTest/data/test.dsdb
tce/test/applibs/TraceDB/ExecutionTraceTest/data/
tce/test/applibs/bem/BEMGeneratorTest/data/complex_bem.bem
tce/test/applibs/bem/BEMGeneratorTest/data/par_bem.bem
tce/test/applibs/dsdb/DSDBManagerTest/data/1.adf
tce/test/applibs/dsdb/DSDBManagerTest/data/1.idf
tce/test/applibs/dsdb/DSDBManagerTest/dsdb1.ddb
tce/test/applibs/dsdb/DSDBManagerTest/dsdb2.ddb
tce/test/applibs/wxToolkit/GUIOptions/GUIOptionsSerializerTest/gui.config
tce/test/base/bem/BEMSerializerTest/data/
tce/test/base/idf/IDFSerializerTest/data/new.idf
tce/test/base/mach/ADFSerializerTest/data/written.mdf
tce/test/base/osal/OperationSerializerTest/data/written.opp
tce/test/tools/RelationalDBTest/data/
tce/test/tools/XMLSerializerTest/data/written.conf
compiletest.log
compiletest.error.log
systemtest
systemtest_long
systemtest_longlong
RE:.*/Makefile.in
tce/src/*/*/Makefile
tce/src/*/*/*/Makefile
Expand All @@ -39,7 +67,7 @@ tce/*/Makefile
tce/src/tools/tce_version_string.h
tce/newlib-1.17.0/tce-llvm
RE:.*/.deps
RE:.*/.libs
**/.libs
tce/test/Makefile.in
RE:tce/src/.*/Makefile
RE:tce/test/.*/Makefile.in
Expand Down Expand Up @@ -81,6 +109,7 @@ tce/src/procgen/ProDe/prode
tce/src/procgen/ProGe/buildicdecoderplugin
tce/src/procgen/ProGe/generateprocessor
tce/src/procgen/ProGe/ttaunittester
tce/src/procgen/MachInfo/machinfo
tce/a.out
tce/aclocal.m4
tce/autom4te.cache/
Expand Down
11 changes: 11 additions & 0 deletions tce/INSTALL
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Quick start
===========

Quick installation instructions are included for several operating systems. If
you're running a Debian-based Linux system (e.g. Ubuntu), follow the
instructions in INSTALL.Debian. Similarly, for RedHat-related distributions
(e.g. CentOS), follow the instructions in INSTALL.RedHat.

The remainder of this document goes into more detail on the dependencies,
versions, and installation procedure for a Unix-style operating system.

Operating system
================

Expand Down
1 change: 0 additions & 1 deletion tce/newlib-1.17.0/newlib/libc/include/machine/ieeefp.h
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,6 @@

#ifdef __TCE__
#define __IEEE_BIG_ENDIAN
#define _DOUBLE_IS_32BITS
/*
This define is used but never defined anywhere.. maybe it's not needed at all
#define NO_LONG_DOUBLE
Expand Down
Loading