Changes between Initial Version and Version 2 of Ticket #48026
- Timestamp:
- Jun 12, 2015, 12:52:40 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #48026
- Property Owner changed from macports-tickets@… to ryandesign@…
-
Ticket #48026 – Description
initial v2 1 1 In the attached test case the filesystem.exists() function always returns false with g++ and works correctly with clang++. 2 2 3 % port -v[[br]] 3 {{{ 4 % port -v 4 5 MacPorts 2.3.3 5 6 6 % clang++ --version [[br]]7 Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn) [[br]]8 Target: x86_64-apple-darwin14.1.0 [[br]]9 Thread model: posix [[br]]7 % clang++ --version 8 Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn) 9 Target: x86_64-apple-darwin14.1.0 10 Thread model: posix 10 11 11 12 12 % g++ --version [[br]]13 g++ (MacPorts gcc5 5.1.0_0) 5.1.0 [[br]]14 Copyright (C) 2015 Free Software Foundation, Inc. [[br]]15 This is free software; see the source for copying conditions. There is NO [[br]]16 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. [[br]]13 % g++ --version 14 g++ (MacPorts gcc5 5.1.0_0) 5.1.0 15 Copyright (C) 2015 Free Software Foundation, Inc. 16 This is free software; see the source for copying conditions. There is NO 17 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 17 18 18 19 19 20 % ./test_filesystem.clang.macport_boost ./test_filesystem.clang.macport_boost 20 21 21 The file './test_filesystem.clang.macport_boost' exists! 22 22 23 23 % ./test_filesystem.gcc.macport_boost ./test_filesystem.gcc.macport_boost 24 25 24 The file './test_filesystem.gcc.macport_boost' DOES NOT exist. 25 }}}