summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/Makefile.unittest
Commit message (Collapse)AuthorAgeFilesLines
* Remove autoconf supportChris Bieneman2016-01-261-69/+0
| | | | | | | | | | | | | | | | Summary: This patch is provided in preparation for removing autoconf on 1/26. The proposal to remove autoconf on 1/26 was discussed on the llvm-dev thread here: http://lists.llvm.org/pipermail/llvm-dev/2016-January/093875.html "I felt a great disturbance in the [build system], as if millions of [makefiles] suddenly cried out in terror and were suddenly silenced. I fear something [amazing] has happened." - Obi Wan Kenobi Reviewers: chandlerc, grosbach, bob.wilson, tstellarAMD, echristo, whitequark Subscribers: chfast, simoncook, emaste, jholewinski, tberghammer, jfb, danalbert, srhines, arsenm, dschuff, jyknight, dsanders, joker.eph, llvm-commits Differential Revision: http://reviews.llvm.org/D16471 llvm-svn: 258861
* With rpaths being set correctly, SHLIBPATH_VAR is not needed anymore.Rafael Espindola2014-02-281-4/+1
| | | | llvm-svn: 202510
* Makefile.unittest: cleanup may fail. Add '-' in the action.NAKAMURA Takumi2013-12-201-1/+1
| | | | llvm-svn: 197777
* Introduce clean-ups in llvm/unittests/Makefile.unittest, to sweep stray *Tests.NAKAMURA Takumi2013-12-191-3/+13
| | | | | | | | Stray *Tests might stay after reverting. FIXME: Could we apply this feature to clang/unittests? FIXME: Implement this feature to CMake. llvm-svn: 197661
* build/unittests: Fix llvm-config names for gtest libraries, and bring MakefileDaniel Dunbar2011-12-151-1/+1
| | | | | | | library names in line with those used by CMake. - Patch by Johannes Obermayr, with tweaks by me. llvm-svn: 146706
* build: Add MAKEFILE_UNITTEST_NO_INCLUDE_COMMON build variable, to be leveragedDaniel Dunbar2011-02-041-0/+2
| | | | | | by Clang. llvm-svn: 124871
* unittests/JITTests: Don't use --export-dynamic but --export-all-symbols on ↵NAKAMURA Takumi2010-11-261-3/+5
| | | | | | | | | | | | cygming. GNU ld/PECOFF accepts but ignores them below; --version-script --export-dynamic --rpath FIXME: autoconf should be aware of them. llvm-svn: 120179
* This patch enables "make unittests" on enable-shared/mingw.Anton Korobeynikov2010-08-171-2/+2
| | | | | | Patch by Takumi Nakamura! llvm-svn: 111270
* Disable pthread support in googletest if llvm was configured without threads.Benjamin Kramer2010-06-031-0/+5
| | | | llvm-svn: 105390
* Turns out gtest still prefers the system <tr1/tuple> over it's ownBenjamin Kramer2010-06-031-0/+3
| | | | | | implementation. Force the internal one to unbreak clang selfhost on linux. llvm-svn: 105386
* Update Readme and Makefiles for the new gtest.Benjamin Kramer2010-06-021-4/+0
| | | | llvm-svn: 105355
* Consolidate GoogleTest make options and duplicate them to its own makefile.Chandler Carruth2010-03-091-8/+10
| | | | llvm-svn: 98074
* Try r96559 for the third time. This time the shared library is only built ifJeffrey Yasskin2010-02-251-1/+10
| | | | | | --enable-shared is passed to configure. llvm-svn: 97119
* Roll back r96959 again.Jeffrey Yasskin2010-02-231-12/+1
| | | | llvm-svn: 96981
* Roll r96559 forward again, adding libLLVM-2.7svn.so to LLVM. This links 3 ofJeffrey Yasskin2010-02-231-1/+12
| | | | | | the examples shared to make sure the shared library keeps working. llvm-svn: 96959
* Roll back the shared library, r96559. It broke two darwins and arm, ↵Jeffrey Yasskin2010-02-181-5/+1
| | | | | | mysteriously. llvm-svn: 96569
* Add a shared library for LLVM, named libLLVM2.7svn.(so|dylib), and add anJeffrey Yasskin2010-02-181-1/+5
| | | | | | | | | | | | | | | | | | | | --enable-shared configure flag to have the tools linked shared. (2.7svn is just $(LLVMVersion) so it'll change to "2.7" in the release.) Always link the example programs shared to test that the shared library keeps working. On my mac laptop, Debug libLLVM2.7svn.dylib is 39MB, and opt (for example) is 16M static vs 440K shared. Two things are less than ideal here: 1) The library doesn't include any version information. Since we expect to break the ABI with every release, this shouldn't be much of a problem. If we do release a compatible 2.7.1, we may be able to hack its library to work with binaries compiled against 2.7.0, or we can just ask them to recompile. I'm hoping to get a real packaging expert to look at this for the 2.8 release. 2) llvm-config doesn't yet have an option to print link options for the shared library. I'll add this as a subsequent patch. llvm-svn: 96559
* Roll r94484 (avoiding RTTI problems in tests) forward again in a way that isn'tJeffrey Yasskin2010-01-261-1/+5
| | | | | | broken by setting CXXFLAGS on the command line. llvm-svn: 94619
* Revert 94484. Re-disable unittests that need RTTI.Bob Wilson2010-01-261-5/+1
| | | | llvm-svn: 94569
* Re-enable unit tests disabled in r94164 by telling GTest about theJeffrey Yasskin2010-01-261-1/+5
| | | | | | lack of RTTI. llvm-svn: 94484
* make -fno-rtti the default unless a directory builds with REQUIRES_RTTI.Chris Lattner2010-01-241-0/+2
| | | | llvm-svn: 94378
* Remove / use flags that are now set in the Makefile.config.Julien Lerouge2009-10-261-1/+1
| | | | llvm-svn: 85149
* Try to fix unit test linking on linux ...Benjamin Kramer2009-10-021-2/+2
| | | | llvm-svn: 83252
* MingW build fixesBenjamin Kramer2009-10-021-1/+1
| | | | | | | | | | - MingW needs -lpsapi (in ${LIBS}) linked after -lLLVMSystem. Noticed by Ronald Pijnacker! - Some parts of the System library must be build with exceptions on windows. Based on a patch by Jay Foad! llvm-svn: 83251
* Link order: it matters.Nick Lewycky2009-09-271-1/+1
| | | | llvm-svn: 82925
* Build (not test) the unittests as part of a normal build.Daniel Dunbar2009-09-131-0/+2
| | | | | | | - 'make unittests' still builds and tests. - 'make unitcheck' inside a unittest directory runs the tests in that directory. llvm-svn: 81725
* Revert unittests build changes temporarily, the unit test build isn't -j safe.Daniel Dunbar2009-09-131-2/+0
| | | | llvm-svn: 81692
* Build (not test) the unittests as part of a normal build.Daniel Dunbar2009-09-131-0/+2
| | | | | | | - 'make unittests' still builds and tests. - 'make unitcheck' inside a unittest directory runs the tests in that directory. llvm-svn: 81687
* include Makefile.common before using $(BuildMode) to get its definitionMisha Brukman2009-04-011-3/+2
| | | | llvm-svn: 68167
* Remove libtool.Nick Lewycky2009-02-261-2/+2
| | | | llvm-svn: 65517
* Original patch by Talin.Misha Brukman2009-01-011-0/+36
* Added the first LLVM unittest -- DenseMap. * Updated mkpatch utility to include llvm/unittests dir * Added top-level target "unittests" to run all unittests llvm-svn: 61541
OpenPOWER on IntegriCloud