935 Commits (7bd78e5b4660d3c8c885fe45e484f0aea532381c)
 

Author SHA1 Message Date
theraven ef5f8b744d Added more test cases. 13 years ago
theraven bcf6e32311 Make it possible to disable building the tests. 13 years ago
theraven d1336543d8 Build with exceptions (fixes the issue with crashes where +initialize throws)
Start adding the tests to CMake.
13 years ago
theraven d1f3463ac7 Make sure that there is always a comma between T and V in property attributes. 13 years ago
theraven 95aef24803 Fix crash in ARC assignment.
Reported by Banlu Name-of-the-week!
13 years ago
theraven c6614a218c Install libobjcxx if we're building it. 13 years ago
theraven 86d07fa024 Install libobjcxx, if it's built. 13 years ago
theraven ee927d20a5 Remove definitions that don't appear to be needed anymore. 13 years ago
theraven c98014b667 Actually commit the disabling of the llvm opts, and not the output from cmake
help...
13 years ago
theraven be2ee54190 Default building the LLVM optimisations to off if the LLVM CMake module is not
found.
13 years ago
theraven 150aa4ef19 Fix linkage in libobjc. 13 years ago
theraven db3cbec65a Make sure that the asm files are built. Add a configuration option for the include headers so OpenBSD can put them in include/gnustep/objc/ 13 years ago
theraven a5cc173310 Correctly handle the case of GNUstep config not existing. 13 years ago
theraven 651962702a Add uninstall target to CMake. 13 years ago
theraven 5cd0a37e27 Change how we do GOT-relative relocations in objc_msgSend on i386 to make gas
happier.
13 years ago
theraven bfc1a2ed11 Add a flag for setting the library name. 13 years ago
theraven 501d5b9828 Set the C++ runtime to nothing if it is not found. 13 years ago
theraven 2841400e0c Add CPack configuration to CMakeLists.txt. RPMs, DEBs and tarballs can now be built directly from the build system. 13 years ago
theraven 080107e2db Correctly pass the LLVM version in to the LLVM passes as they are built. 13 years ago
theraven a5b4ab9937 Specify the current runtime version to target if the compiler supports this
flag.  This means that the .m files in the runtime will take advantage of
features of this runtime when compiled with a recent clang.
13 years ago
theraven d0562d2127 Added helper function for C++ non-POD type atomic properties.
Fixed prototypes of specialised property functions.
13 years ago
theraven a9be008911 Add optimised special-case property function. 13 years ago
theraven 3c7d6f8fd9 Fix merging CFLAGS. 13 years ago
theraven 77591f9956 Handle the case where the compiler generates the exception table entries in the wrong order. 13 years ago
theraven 7bff0ba7e6 Revert r35794, which broke the Makefile by introducing GNUisms. 13 years ago
theraven 01bf761766 Target i586 on i686 with clang. 13 years ago
theraven 7afed09286 Change how installation location is detected, as per Quentin's suggestion. 13 years ago
theraven 94570d9895 Actually fix header install locations... 13 years ago
theraven 6c131e2eb7 Fix header installation location. 13 years ago
theraven 1d2e5f7a2d Remove non-functional script for doing in-place builds of the LLVM optimisations. 13 years ago
theraven 1002b5fd86 Remove the non-functional Makefile.clang 13 years ago
theraven 4c6f6dbdcf Updated WIP announcement for 1.7. 13 years ago
theraven 3081618c47 Add CMake build system for libobjc2. This will replace the existing build
systems after some further testing.

Currently, we have three build systems for libobjc2:

- GNUmakefile, which provides a number of options but not very cleanly (i.e.
  the only way of knowing what they are is to read the source) and doesn't
  correctly build the Objective-C++ runtime.
- Makefile, which works correctly for a single configuration, but requires
  tweaking by hand to build others.
- Makefile.clang, which is experimental, doesn't really work, and confuses
  people.

The new CMake system:

- Correctly installs in a GNUstep location if one exists, or in a system
  location otherwise.  This is configurable at build time.
- Provides inspectable options for all of the configuration choices (run ccmake
  to see them all)
- Easily supports cross-compilation and out-of-tree builds
- Is easy to extend and inspect
- Automatically builds the LLVM optimisations (which already use CMake, as it's
  the only clean way of building LLVM optimisations out of tree) and can be
  easily configured not to if they are not required.
- Will build a single libobjc.so for platforms that provide a separate C++
  runtime and a separate libobjcxx for ones that don't.
- Can generate build files for make, ninja, XCode, Eclipse, and Visual Studio

For those unfamiliar with CMake, the best way of building is an out-of-tree
build.  For the simplest case, it's just a matter of:

$ mkdir build
$ cd build
$ cmake ..
$ make
$ sudo -E make install

If you wish to edit any of the configuration options, the easiest way is to run
ccmake instead of cmake.  You can also run ccmake . from the build directory to
edit the options after initial configuration.

For faster builds , try using ninja instead of make.  Add -G Ninja to the
[c]cmake command line and then run ninja instead of make.
13 years ago
theraven 713957f9d2 Fix lookup of properties after getting their attributes. 13 years ago
theraven 85fd42dd5a Fix an infinite loop when first sending a message to a class that has a hidden class. 13 years ago
theraven c7419155d5 Add some explicit NULL checks in property introspection code. 13 years ago
qmathe e8c14d95b9 Fixed segfaults in programs compiled with Clang using -fobjc-nonfragile-abi on
Linux x86-32. 

If both -03 and -fobjc-nonfragile-abi are used, -march=i586 is required (at 
least on my Linux machine). This flag was lost during the recent GNUmakefile 
rewrite (see r35690).

In addition, I also added MinGW32 and pthread flags used previously in the 
GNUmakefile but missing in the Makefile.
13 years ago
rfm aa98226a0c add diagnostics and warnings to cope better if in a partially set up gnustep 13 years ago
rfm 0d6f7bfdfa dd help on end of installation 13 years ago
rfm 9230241327 add a little informatrion/diagnostic 13 years ago
theraven 3649fe37ec Fix while -> if bug introduced when refactoring ARC code which caused infinite
loop.

Reported by Tom Davie.
13 years ago
theraven abc1d44c9c Fix handling of properties that refer to an instance variable other than the
default.
13 years ago
rfm 17b8ff43c9 added distclean targer ... calls clean 13 years ago
rfm 25962bc45e Update support for installation in correct location for GNUstep 13 years ago
theraven 7a232c68d6 Fix typo in .cxx_construct.
Reported by Luboš Doležel!
13 years ago
theraven cdc31c6c0d Fix class_addProperty().
Reported by Luboš Doležel!
13 years ago
theraven 2410ca70e2 Made name() const to avoid missing symbol error with libobjcxx. 13 years ago
theraven cdd2684f60 Small Makefile tweaks.
Patch by Kubilay Kocak!
13 years ago
theraven 3b5e00b995 Small improvements to class lookup cache pass. 14 years ago
theraven 31149afd20 Add CMake minimum version. 14 years ago